public void CancelSelect()
        {
#if DEBUG
            if (dbugEnableTextManRecorder)
            {
                _dbugActivityRecorder.WriteInfo("TxLMan::CancelSelect");
            }
#endif
            if (_selectionRange != null)
            {
                //invalidate graphic area?

                _textLayer.ClientLineBubbleupInvalidateArea(_selectionRange.GetSelectionUpdateArea());
            }
            _selectionRange = null;
            SelectionCanceled?.Invoke(this, EventArgs.Empty);
        }
 private void Cancel()
 {
     SelectionCanceled?.Invoke(this, EventArgs.Empty);
 }
Esempio n. 3
0
 public override void ContactPickerDidCancel(CNContactPickerViewController picker)
 {
     SelectionCanceled?.Invoke();
 }
Esempio n. 4
0
 internal void RaiseSelectionCanceled()
 {
     SelectionCanceled?.Invoke();
 }