Class EditControlEventArgs
Optional base class for event args relating to an edit control. Holds a reference to the edit control.
Inheritance
Inherited Members
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()
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.
EditControlEventArgs(IEditControl)
Construction from an edit control.
Declaration
public EditControlEventArgs(IEditControl editControl)
Parameters
Type | Name | Description |
---|---|---|
IEditControl | editControl |
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.
Properties
EditControl
The edit control in which the selection changed.
Declaration
public IEditControl EditControl { get; set; }
Property Value
Type | Description |
---|---|
IEditControl |
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.