InkOverlaySelectionChangingEventArgs.NewSelection 属性

InkOverlaySelectionChangingEventArgs 事件获取新的 Strokes 集合。

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

语法

声明
Public ReadOnly Property NewSelection As Strokes
用法
Dim instance As InkOverlaySelectionChangingEventArgs
Dim value As Strokes

value = instance.NewSelection
public Strokes NewSelection { get; }
public:
property Strokes^ NewSelection {
    Strokes^ get ();
}
/** @property */
public Strokes get_NewSelection()
public function get NewSelection () : Strokes

属性值

类型:Microsoft.Ink.Strokes
新的 Strokes 集合。

示例

在此示例中,SelectionChanging 事件处理程序从当前选择中移除除一个 Stroke 对象以外的所有对象,从而禁止选择多个笔画。

Private Sub mInkObject_SelectionChanging(ByVal sender As Object, ByVal e As InkOverlaySelectionChangingEventArgs)
    While e.NewSelection.Count > 1
        e.NewSelection.RemoveAt(e.NewSelection.Count - 1)
    End While
End Sub
private void mInkObject_SelectionChanging(object sender, InkOverlaySelectionChangingEventArgs e)
{
    while (e.NewSelection.Count > 1)
    {
        e.NewSelection.RemoveAt(e.NewSelection.Count - 1);
    }
}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkOverlaySelectionChangingEventArgs 类

InkOverlaySelectionChangingEventArgs 成员

Microsoft.Ink 命名空间

InkOverlay

InkOverlay.SelectionChanging