Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
Data Property
See Also 
Leadtools.ImageProcessing Namespace > RasterUserMatchTable Class : Data Property




Gets a pointer to the internal user match table.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Data As IntPtr
Visual Basic (Usage)Copy Code
Dim instance As RasterUserMatchTable
Dim value As IntPtr
 
value = instance.Data
C# 
public IntPtr Data {get;}
Managed Extensions for C++ 
public: __property IntPtr get_Data();
C++/CLI 
public:
property IntPtr Data {
   IntPtr get();
}

Return Value

An unmanaged pointer to 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: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also