Updates part of column with new pixels.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public MustOverride Sub UpdateColumnFrom( _
   ByVal column As Integer, _
   ByVal  As Integer, _
   ByVal  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 ,
   ImGearPixelArray 
)
             
        
            
            public: abstract void UpdateColumnFrom( 
   int column,
   int ,
   ImGearPixelArray* 
) 
             
        
            
            public:
abstract void UpdateColumnFrom( 
   int column,
   int ,
   ImGearPixelArray^ 
) 
             
        
             
        
            Parameters
- column
- Number of column to update.
- row
- Y offset in column.
- pixels
- New values for pixels being updated.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also