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



Gets the managed buffer containing one or more lines of output image data that the command has already converted. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property DataArray As Byte()
Visual Basic (Usage)Copy Code
Dim instance As ColorResolutionCommandDataEventArgs
Dim value() As Byte
 
value = instance.DataArray
C# 
public byte[] DataArray {get;}
C++/CLI 
public:
property array<byte>^ DataArray {
   array<byte>^ get();
}

Property Value

The buffer containing one or more lines of output image data that the command has already converted.

Example

For an example, refer to ColorResolutionCommandDataEventArgs

Remarks

This property returns the data in a managed buffer. To get the data in an unmanaged buffer, use the Data property.

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