Eto.Forms.TextArea.OnSelectionChanged C# (CSharp) Method

OnSelectionChanged() protected method

Raises the SelectionChanged event.
protected OnSelectionChanged ( EventArgs e ) : void
e System.EventArgs Event arguments.
return void
		protected virtual void OnSelectionChanged(EventArgs e)
		{
			Properties.TriggerEvent(SelectionChangedEvent, this, e);
		}

Usage Example

Beispiel #1
0
 /// <summary>
 /// Raises the selection changed event.
 /// </summary>
 public void OnSelectionChanged(TextArea widget, EventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnSelectionChanged(e));
 }
All Usage Examples Of Eto.Forms.TextArea::OnSelectionChanged