Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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;}
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 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also