Leadtools.Windows.Media.Effects Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.02.15
Buffer Property
See Also 
Leadtools.Windows.Media.Effects.SpecialEffects Namespace > FunctionalLightCommandBitmapEffect 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 FunctionalLightCommandBitmapEffect
Dim value() As Integer
 
instance.Buffer = value
 
value = instance.Buffer
C# 
public int[] Buffer {get; set;}
Managed Extensions for C++ 
public: __property int[]* get_Buffer();
public: __property void set_Buffer( 
   int[]* value
);
C++/CLI 
public:
property array<int>^ Buffer {
   array<int>^ get();
   void set (intarray<value>^ value);
}
XAML 
cannot be used in XAML directly.Instead use x:Array Markup Extension.
XAML Attributes Usage 

<object Buffer =in >

Dependency Property Information 

Identifier field

BufferProperty

Metadata properties set to true

None

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 FunctionalLightCommandBitmapEffectsFlags.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

For XAML example, refer to Angle.

For C#/VB examples, refer to Angle.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003

See Also