ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearDIB Class / GetColumnCopy Method
Number of column in image.
Y offset in requested column.
Quantity of pixels to be retrieved.




In This Topic
GetColumnCopy Method
In This Topic
Returns an array of pixels that are exact copies of pixels located in requested column part.
Syntax
'Declaration
 
Public MustOverride Function GetColumnCopy( _
   ByVal column As Integer, _
   ByVal row As Integer, _
   ByVal pixelsQty As Integer _
) As ImGearPixelArray
 
'Usage
 
Dim instance As ImGearDIB
Dim column As Integer
Dim row As Integer
Dim pixelsQty As Integer
Dim value As ImGearPixelArray
 
value = instance.GetColumnCopy(column, row, pixelsQty)

Parameters

column
Number of column in image.
row
Y offset in requested column.
pixelsQty
Quantity of pixels to be retrieved.

Return Value

ImGearPixelArray class instance.
Remarks
Throws exception if specified points are outside image bounds.
See Also