Class EditControlEventArgs
Optional base class for event args relating to an edit control. Holds a reference to the edit control.
Inheritance
System.Object
System.EventArgs
EditControlEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class EditControlEventArgs : EventArgs
Remarks
Note that not all event args for the control are derived from this class, it is merely used as a convenience to avoid having to implement properties over and over again.
Constructors
EditControlEventArgs()
Default constructor, creates an empty object
Declaration
public EditControlEventArgs()
EditControlEventArgs(IEditControl)
Construction from an edit control.
Declaration
public EditControlEventArgs(IEditControl editControl)
Parameters
Type | Name | Description |
---|---|---|
IEditControl | editControl |
Properties
EditControl
The edit control in which the selection changed.
Declaration
public IEditControl EditControl { get; set; }
Property Value
Type | Description |
---|---|
IEditControl |