ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearDIB Class / UpdateRowFrom Method
X offset in row.
Number of row to be updated.
New values for the pixels being updated.




In This Topic
    UpdateRowFrom Method
    In This Topic
    Updates part of row with new pixels.
    Syntax
    'Declaration
     
    Public MustOverride Sub UpdateRowFrom( _
       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.UpdateRowFrom(column, row, pixels)
    public abstract void UpdateRowFrom( 
       int column,
       int row,
       ImGearPixelArray pixels
    )
    public: abstract void UpdateRowFrom( 
       int column,
       int row,
       ImGearPixelArray* pixels
    ) 
    public:
    abstract void UpdateRowFrom( 
       int column,
       int row,
       ImGearPixelArray^ pixels
    ) 

    Parameters

    column
    X offset in row.
    row
    Number of row to be updated.
    pixels
    New values for the pixels being updated.
    Remarks
    Updates the pixels of the specified row area.
    See Also