InkCanvas.Left Attached Property

Definition

Gets or sets the distance between the left side of an element and the left side of its parent InkCanvas.

see GetLeft, and SetLeft
see GetLeft, and SetLeft
see GetLeft, and SetLeft

Examples

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>

Remarks

Dependency Property Information

Identifier field LeftProperty
Metadata properties set to true None

XAML Attribute Usage

<object InkCanvas.Left="double"/>  
- or -  
<object InkCanvas.Left="qualifiedDouble"/>  

XAML Values

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