Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GrayscaleBitmap Class / Clip Method
Clipping rectangle of the source image to be extracted as a new GrayscaleBitmap.
Specifies whether to copy the image metadata only, not actual pixel data. If false, the corresponding pixel data will be copied from the current GrayscaleBitmap. If true, the pixel data of the resulting GrayscaleBitmap remain uninitialized.

In This Topic
    Clip Method (GrayscaleBitmap)
    In This Topic
    Creates a new GrayscaleBitmap with a fragment of the image.
    Syntax
    'Declaration
     
    Public Function Clip( _
       ByVal rect As System.Drawing.Rectangle, _
       Optional ByVal metadataOnly As System.Boolean _
    ) As GrayscaleBitmap
    public GrayscaleBitmap Clip( 
       System.Drawing.Rectangle rect,
       System.bool metadataOnly
    )

    Parameters

    rect
    Clipping rectangle of the source image to be extracted as a new GrayscaleBitmap.
    metadataOnly
    Specifies whether to copy the image metadata only, not actual pixel data. If false, the corresponding pixel data will be copied from the current GrayscaleBitmap. If true, the pixel data of the resulting GrayscaleBitmap remain uninitialized.
    See Also