ContextNodeMovingToPositionEventArgs.NewIndex 属性

获取 InkAnalyzer 要将 ContextNode 移动到的位置的索引。

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

语法

声明
Public ReadOnly Property NewIndex As Integer
用法
Dim instance As ContextNodeMovingToPositionEventArgs
Dim value As Integer

value = instance.NewIndex
public int NewIndex { get; }
public:
property int NewIndex {
    int get ();
}
/** @property */
public int get_NewIndex()
public function get NewIndex () : int

属性值

类型:System.Int32
InkAnalyzer 要将 ContextNode 移动到的位置的索引。

示例

下面的示例定义 MoveContextNodeToPosition 方法,用以处理 ContextNodeMovingToPosition 事件。事件信息将传递给文档模型对象 theDocumentModel。

此示例不提供文档模型的定义,也不演示文档模型如何处理传入的信息。

'/ <summary>
'/ Handles the InkAnalyzer.ContextNodeMovingToPosition event.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
Private Sub MoveContextNodeToPosition( _
    ByVal sender As Object, _
    ByVal e As Microsoft.Ink.ContextNodeMovingToPositionEventArgs)

    Me.theDocumentModel.MoveNode(e.SubNodeToMove, e.NewIndex)

End Sub 'MoveContextNodeToPosition

        /// <summary>
        /// Handles the InkAnalyzer.ContextNodeMovingToPosition event.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The event data.</param>
        private void MoveContextNodeToPosition(
            object sender, Microsoft.Ink.ContextNodeMovingToPositionEventArgs e)
        {
            this.theDocumentModel.MoveNode(e.SubNodeToMove, e.NewIndex);
        }

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

ContextNodeMovingToPositionEventArgs 类

ContextNodeMovingToPositionEventArgs 成员

Microsoft.Ink 命名空间