The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Thickness.Right Property
Visual Studio 2010
Gets or sets the width, in pixels, of the right side of the bounding rectangle.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object Right="double" .../>
Property Value
Type: System.DoubleA Double that represents the width, in pixels, of the right side of the bounding rectangle for this instance of Thickness. A pixel is equal to 1/96 of an inch. The default is 0.
The following example shows how to set the value of the Right property by using Extensible Application Markup Language (XAML) and code.
Dim myBorder2 As New Border() myBorder2.BorderBrush = Brushes.SteelBlue myBorder2.Width = 400 myBorder2.Height = 400 Dim myThickness As New Thickness() myThickness.Bottom = 5 myThickness.Left = 10 myThickness.Right = 15 myThickness.Top = 20 myBorder2.BorderThickness = myThickness
<Border BorderBrush="SteelBlue" Width="400" Height="400" Canvas.Left="100" Canvas.Top="100"> <Border.BorderThickness> 10,20,15,5 </Border.BorderThickness> </Border>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Community Additions
Show: