Thickness.Top Property
.NET Framework 3.0
Gets or sets the width, in pixels, of the upper side of the bounding rectangle.
Namespace: System.Windows
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration Public Property Top As Double 'Usage Dim instance As Thickness Dim value As Double value = instance.Top instance.Top = value
/** @property */ public double get_Top () /** @property */ public void set_Top (double value)
public function get Top () : double public function set Top (value : double)
<object Top="double" .../>
Property Value
A Double that represents the width, in pixels, of the upper 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 Top 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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: