Nevron .NET Vision
Nevron.Interop.Win32 Namespace / NGdi32 Class / BitBlt Method


In This Topic
    BitBlt Method
    In This Topic
    Syntax
    'Declaration
     
    
    Public Shared Function BitBlt( _
       ByVal hdcDest As System.IntPtr, _
       ByVal nXDest As System.Integer, _
       ByVal nYDest As System.Integer, _
       ByVal nWidth As System.Integer, _
       ByVal nHeight As System.Integer, _
       ByVal hdcSrc As System.IntPtr, _
       ByVal nXSrc As System.Integer, _
       ByVal nYSrc As System.Integer, _
       ByVal dwRop As System.UInteger _
    ) As System.Boolean
    'Usage
     
    
    Dim hdcDest As System.IntPtr
    Dim nXDest As System.Integer
    Dim nYDest As System.Integer
    Dim nWidth As System.Integer
    Dim nHeight As System.Integer
    Dim hdcSrc As System.IntPtr
    Dim nXSrc As System.Integer
    Dim nYSrc As System.Integer
    Dim dwRop As System.UInteger
    Dim value As System.Boolean
     
    value = NGdi32.BitBlt(hdcDest, nXDest, nYDest, nWidth, nHeight, hdcSrc, nXSrc, nYSrc, dwRop)
    public static System.bool BitBlt( 
       System.IntPtr hdcDest,
       System.int nXDest,
       System.int nYDest,
       System.int nWidth,
       System.int nHeight,
       System.IntPtr hdcSrc,
       System.int nXSrc,
       System.int nYSrc,
       System.uint dwRop
    )

    Parameters

    hdcDest
    nXDest
    nYDest
    nWidth
    nHeight
    hdcSrc
    nXSrc
    nYSrc
    dwRop
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also