Class EditControlEventArgs
Optional base class for event args relating to an edit control. Holds a reference to the edit control.
Inheritance
EditControlEventArgs
Inherited Members
Namespace: SdlSdl.DesktopEditorEditorApi
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 |