InkCanvas.Top Attached Property
In this article
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the distance between the top of an element and the top of its parent InkCanvas.
see GetTop, and SetTop
see GetTop, and SetTop
see GetTop, and SetTop
The following example demonstrates how to set the position of a Label on an InkCanvas.
<InkCanvas Name="inkCanvas2" Width="200" Height="200" Background="Green">
<Label Name="label1" Background="Black" Foreground="White" InkCanvas.Left="50" InkCanvas.Right="100"
InkCanvas.Top="50" InkCanvas.Bottom="100">my label</Label>
</InkCanvas>
Item | Value |
---|---|
Identifier field | TopProperty |
Metadata properties set to true |
None |
<object InkCanvas.Top="double"/>
- or -
<object InkCanvas.Top="qualifiedDouble"/>
double
String representation of a Double value. This is interpreted as a device-independent unit (1/96th inch) measurement. Strings need not explicitly include decimal points. For instance a value of 1
is acceptable.
qualifiedDouble
A double value as described above, followed by one of the following unit declaration strings: px
, in
, cm
, pt
.
px
(default) is device-independent units (1/96th inch per unit)
in
is inches; 1in==96px
cm
is centimeters; 1cm==(96/2.54) px
pt
is points; 1pt==(96/72) px
Applies to
Product | Versions |
---|---|
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9, 10 |