Share via


InkEdit.SelInksDisplayMode Property

Gets or sets a value that indicates whether the selected ink appears as ink or text.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public Property SelInksDisplayMode As InkDisplayMode
'Usage
Dim instance As InkEdit 
Dim value As InkDisplayMode 

value = instance.SelInksDisplayMode

instance.SelInksDisplayMode = value
[BrowsableAttribute(false)]
public InkDisplayMode SelInksDisplayMode { get; set; }
[BrowsableAttribute(false)]
public:
property InkDisplayMode SelInksDisplayMode {
    InkDisplayMode get ();
    void set (InkDisplayMode value);
}
public function get SelInksDisplayMode () : InkDisplayMode 
public function set SelInksDisplayMode (value : InkDisplayMode)

Property Value

Type: Microsoft.Ink.InkDisplayMode
Whether the selected ink appears as ink or text.

Value

Meaning

Text

The ink is recognized and appears as text.

Ink

The appearance of the ink remains as ink.

Remarks

The SelInksDisplayMode property allows you to toggle the appearance of the selected Ink objects between ink and text.

This property is available at run time only. To select the ink, use the Select( ) method.

Examples

In this example, the SelInksDisplayMode property is set to display selected ink as text.

mInkEdit.SelInksDisplayMode = InkDisplayMode.Text
mInkEdit.SelInksDisplayMode = InkDisplayMode.Text;

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InkEdit Class

InkEdit Members

Microsoft.Ink Namespace

InkDisplayMode