LayoutFarm.Text.InternalTextLayerController.EndSelect C# (CSharp) Method

EndSelect() public method

public EndSelect ( ) : void
return void
        public void EndSelect()
        {
            if (textLineWriter != null)
            {
#if DEBUG
                if (dbugEnableTextManRecorder)
                {
                    dbugTextManRecorder.WriteInfo("TxLMan::EndSelect");
                }
#endif
                selectionRange.EndPoint = GetCurrentPointInfo();
            }
        }

Usage Example

コード例 #1
0
 public override void InvokeUndo(InternalTextLayerController textMan)
 {
     textMan.CurrentLineNumber = startLineNumber;
     textMan.CharIndex         = startCharIndex;
     textMan.StartSelect();
     textMan.CurrentLineNumber = endLineNumber;
     textMan.CharIndex         = endCharIndex;
     textMan.EndSelect();
 }
All Usage Examples Of LayoutFarm.Text.InternalTextLayerController::EndSelect