Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.5.7
Offsets Property
See Also 
Leadtools.ColorConversion Namespace > ConversionYuvParameters Structure : Offsets Property




Gets or sets the offsets of the byte ordering for the proposed YUV format.

Syntax

Visual Basic (Declaration) 
Public Property Offsets As Integer()
Visual Basic (Usage)Copy Code
Dim instance As ConversionYuvParameters
Dim value() As Integer
 
instance.Offsets = value
 
value = instance.Offsets
C# 
public int[] Offsets {get; set;}
Managed Extensions for C++ 
public: __property int[]* get_Offsets();
public: __property void set_Offsets( 
   int[]* value
);
C++/CLI 
public:
property array<int>^ Offsets {
   array<int>^ get();
   void set (intarray<value>^ value);
}

Return Value

Integer array that represents the offsets of the byte ordering for the proposed YUV format. When Planar 1, the only useful data is Offsets[0] which will indicate the arrangement of the YUV buffer.

Example

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