Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
Buffer Property
See Also 
Leadtools.ImageProcessing.SpecialEffects Namespace > FunctionalLightCommand Class : Buffer Property



Gets or sets an array that holds all points that represents the shape drawn by the user.

Syntax

Visual Basic (Declaration)  
Public Property Buffer As Integer()
Visual Basic (Usage) Copy Code
Dim instance As FunctionalLightCommand
Dim value() As Integer
 
instance.Buffer = value
 
value = instance.Buffer
C#  
public int[] Buffer {get; set;}
C++/CLI  
public:
property array<int>^ Buffer {
   array<int>^ get();
   void set (intarray<value>^ value);
}

Return Value

Array that holds all points that represents the shape drawn by the user. This property is used only if the Flags property is set to FunctionalLightCommandFlags.Freehand. These values should be between -1000 and 1000. They are internally divided by 1000, so the real values are between -1 and 1.

Example

Refer to Angle.

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