InkEdit.InkInsertMode 属性

获取或设置 InkInsertMode 枚举中的一个值,该值指示墨迹 如何插入到控件上。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
<BrowsableAttribute(True)> _
Public Property InkInsertMode As InkInsertMode
用法
Dim instance As InkEdit
Dim value As InkInsertMode

value = instance.InkInsertMode

instance.InkInsertMode = value
[BrowsableAttribute(true)]
public InkInsertMode InkInsertMode { get; set; }
[BrowsableAttribute(true)]
public:
property InkInsertMode InkInsertMode {
    InkInsertMode get ();
    void set (InkInsertMode value);
}
/** @property */
/** @attribute BrowsableAttribute(true) */
public InkInsertMode get_InkInsertMode()
/** @property */
/** @attribute BrowsableAttribute(true) */
public  void set_InkInsertMode(InkInsertMode value)
public function get InkInsertMode () : InkInsertMode
public function set InkInsertMode (value : InkInsertMode)

属性值

类型:Microsoft.Ink.InkInsertMode
一个指示墨迹 如何插入到控件上的 InkInsertMode 值。

示例

在此示例中,InkInsertMode 属性被设置为将墨迹作为文本放入 InkEdit 控件。

mInkEdit.InkInsertMode = InkInsertMode.InsertAsText
mInkEdit.InkInsertMode = InkInsertMode.InsertAsText;

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkEdit 类

InkEdit 成员

Microsoft.Ink 命名空间

InkInsertMode