TdxEventArgs Type
In This Article
The base class for all event argument containers in Rich Edit controls.
#Declaration
Delphi
TdxEventArgs = dxCoreClasses.TdxEventArgs;
#Referenced Class
Type |
---|
Tdx |
#Remarks
An occurred event passes the following information into an assigned handler as parameters:
- A reference to the object that raised the event (
Sender
). - A
TdxEventArgs
descendant instance, that is, an event argument container (Args
).
Do not use the TdxEventArgs
class directly. Use its descendants instead.
See Also