This document is archived and information here might be outdated.  Recommended version.


IDisplayFilter.Apply Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > ID > IDisplayFilter Interface > IDisplayFilter.Apply Method
ArcGIS Developer Help

IDisplayFilter.Apply Method

Takes the latest drawing found in the foreground bitmap and applies it to the background bitmap, sending the results to the destination bitmap.

[Visual Basic .NET]
Public Sub Apply ( _
    ByVal backgroundHDC As Integer, _
    ByVal foregroundHDC As Integer, _
    ByVal destinationHDC As Integer, _
    ByVal clipLeft As Integer, _
    ByVal clipTop As Integer, _
    ByVal clipRight As Integer, _
    ByVal clipBottom As Integer, _
    ByVal destinationLeft As Integer, _
    ByVal destinationTop As Integer _
)
[C#]
public void Apply (
    int backgroundHDC,
    int foregroundHDC,
    int destinationHDC,
    int clipLeft,
    int clipTop,
    int clipRight,
    int clipBottom,
    int destinationLeft,
    int destinationTop
);
[C++]
HRESULT Apply(
  OLE_HANDLE backgroundHDC,
  OLE_HANDLE foregroundHDC,
  OLE_HANDLE destinationHDC,
  long clipLeft,
  long clipTop,
  long clipRight,
  long clipBottom,
  long destinationLeft,
  long destinationTop
);
[C++]
Parameters
backgroundHDC [in]

backgroundHDC is a parameter of type OLE_HANDLE foregroundHDC [in]
foregroundHDC is a parameter of type OLE_HANDLE destinationHDC [in]
destinationHDC is a parameter of type OLE_HANDLE clipLeft [in]
clipLeft is a parameter of type long clipTop [in]
clipTop is a parameter of type long clipRight [in]
clipRight is a parameter of type long clipBottom [in]
clipBottom is a parameter of type long destinationLeft [in]
destinationLeft is a parameter of type long destinationTop [in]
destinationTop is a parameter of type long

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IDisplayFilter Interface