Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
SetRowSegments(Int32,Int32,IntPtr,IntPtr,Int32,Boolean) Method
See Also 
Leadtools Namespace > RasterImage Class > SetRowSegments Method : SetRowSegments(Int32,Int32,IntPtr,IntPtr,Int32,Boolean) Method



row
0-based row index
column
0-based column index
buffer
The scanline buffer
segments
Segments buffer
segmentCount
Number of segments in segments
preserveAlpha
A value indicating whether to preserve the alpha values in 32 and 64-bit images.
For internal use by LEADTOOLS.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub SetRowSegments( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal buffer As IntPtr, _
   ByVal segments As IntPtr, _
   ByVal segmentCount As Integer, _
   ByVal preserveAlpha As Boolean _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim row As Integer
Dim column As Integer
Dim buffer As IntPtr
Dim segments As IntPtr
Dim segmentCount As Integer
Dim preserveAlpha As Boolean
 
instance.SetRowSegments(row, column, buffer, segments, segmentCount, preserveAlpha)
C# 
public void SetRowSegments( 
   int row,
   int column,
   IntPtr buffer,
   IntPtr segments,
   int segmentCount,
   bool preserveAlpha
)
C++/CLI 
public:
void SetRowSegments( 
   int row,
   int column,
   IntPtr buffer,
   IntPtr segments,
   int segmentCount,
   bool preserveAlpha
) 

Parameters

row
0-based row index
column
0-based column index
buffer
The scanline buffer
segments
Segments buffer
segmentCount
Number of segments in segments
preserveAlpha
A value indicating whether to preserve the alpha values in 32 and 64-bit images.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also