Height Property
Collapse the table of content
Expand the table of content

DrawingAttributes.Height Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets or sets the height of the stylus that is used to draw a Stroke.

Namespace:  System.Windows.Ink
Assembly:  System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.

'Declaration
Public Property Height As Double
<DrawingAttributes Height="double"/>

Property Value

Type: System.Double
The height of the stylus that is used to draw a Stroke. The default is 2 logical pixels.

If you try to set the Height property to 0 logical pixels, it is changed to 2 logical pixels.

The following code example demonstrates how to set the Height property. This is part of a larger example available in DrawingAttributes class overview.


    'Set drawing attributes to simulate a highlighter
    Private Sub BtHighlighter_Click(ByVal sender As Object, ByVal e As EventArgs)
        MyDA.Width = 25
        MyDA.Height = 5
        MyDA.Color = Colors.Yellow
        MyDA.OutlineColor = Colors.Yellow
    End Sub



Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft