LEADTOOLS WPF and Silverlight (Leadtools.Windows.Controls assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
ItemBorderThickness Property
See Also 
Leadtools.Windows.Controls Namespace > ImageList Class : ItemBorderThickness Property



Gets or sets a value that indicates the number of pixels to use to draw the border of each item. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("Border thickness for each item.")>
<CategoryAttribute("Appearance")>
Public Property ItemBorderThickness As Thickness
Visual Basic (Usage)Copy Code
Dim instance As ImageList
Dim value As Thickness
 
instance.ItemBorderThickness = value
 
value = instance.ItemBorderThickness
C# 
[DescriptionAttribute("Border thickness for each item.")]
[CategoryAttribute("Appearance")]
public Thickness ItemBorderThickness {get; set;}
C++/CLI 
[DescriptionAttribute("Border thickness for each item.")]
[CategoryAttribute("Appearance")]
public:
property Thickness ItemBorderThickness {
   Thickness get();
   void set (    Thickness value);
}

Property Value

A System.Windows.Thickness object that indicates the number of pixels to use when drawing the border of each item. Default value is Thickness(2).

Example

For XAML example, refer to ItemBorderBrush.

For C#/VB examples, refer to ItemBorderBrush.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also