ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearDIB Class / UpdateColumnFrom Method
Number of column to update.
Y offset in column.
New values for pixels being updated.




In This Topic
    UpdateColumnFrom Method
    In This Topic
    Updates part of column with new pixels.
    Syntax
    'Declaration
     
    Public MustOverride Sub UpdateColumnFrom( _
       ByVal column As Integer, _
       ByVal row As Integer, _
       ByVal pixels As ImGearPixelArray _
    ) 
    'Usage
     
    Dim instance As ImGearDIB
    Dim column As Integer
    Dim row As Integer
    Dim pixels As ImGearPixelArray
     
    instance.UpdateColumnFrom(column, row, pixels)
    public abstract void UpdateColumnFrom( 
       int column,
       int row,
       ImGearPixelArray pixels
    )
    public: abstract void UpdateColumnFrom( 
       int column,
       int row,
       ImGearPixelArray* pixels
    ) 
    public:
    abstract void UpdateColumnFrom( 
       int column,
       int row,
       ImGearPixelArray^ pixels
    ) 

    Parameters

    column
    Number of column to update.
    row
    Y offset in column.
    pixels
    New values for pixels being updated.
    See Also