IPrintingSystem.AfterChange Event
Occurs after certain properties of the IPrintingSystem object have been changed.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Event Data
The AfterChange event's data class is ChangeEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
EventName | Gets the event name that initiated a ChangeEvent. |
The event data class exposes the following methods:
Method | Description |
---|---|
Add(String, Object) | Initializes a new instance of the DevExpress.XtraPrinting.ChangeEventArgs.EventInfo class with the specified name and value and adds it to the collection. |
ValueOf(String) | Returns an object, containing information about the event with the specified name. |
Remarks
The printing system provides several events which occur after specific properties have been changed. Classes that implement this interface specify which properties, if changed, should generate the AfterChange event.
See Also