LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
Buffer Property
See Also 
Leadtools.ImageProcessing Namespace > RasterUserMatchTable Class : Buffer Property



Gets the user match table data. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Buffer As RasterNativeBuffer
Visual Basic (Usage)Copy Code
Dim instance As RasterUserMatchTable
Dim value As RasterNativeBuffer
 
value = instance.Buffer
C# 
public RasterNativeBuffer Buffer {get;}
C++/CLI 
public:
property RasterNativeBuffer Buffer {
   RasterNativeBuffer get();
}

Property Value

A RasterNativeBuffer object that contains the internal user match table.

Example

For an example, refer to RasterUserMatchTable.

Remarks

When you call the Create method, this property will return a pointer to the internal created match table.

The completed table is a 32K array of integers. On a 32-bit system, it occupies 128K bytes of memory. Creation of the table is a slow, memory-intensive process that is useful only if you are using your own palette more than once. For example, you may want to create the table once, save it to a file, and ship that file with your application.

For more information, refer to RasterUserMatchTable.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also