A newer version of this page is available.
Switch to the current version.
PrintingSystemBase.AfterChange Event
Occurs on raising any PrintingSystem event that does not have the "Before" prefix in its name.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v18.2.Core.dll
Declaration
public event ChangeEventHandler AfterChange
Public Event AfterChange As ChangeEventHandler
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 following events can be passed as a parameter with the AfterChange event.
Event | EventName | InfoList.Name | InfoList.Value |
---|---|---|---|
PrintControl.BrickClick | BrickClick | Brick | A Brick class instance representing the event sender. |
PrintControl.BrickDown | BrickDown | Brick | A Brick class instance representing the event sender. |
PrintControl.BrickMove | BrickMove | Brick | A Brick class instance representing the event sender. |
PrintControl.BrickUp | BrickUp | Brick | A Brick class instance representing the event sender. |
PrintingSystemBase.AfterMarginsChange | AfterMarginsChange | Side | A string representing a margin side or "All" for all margin sides. |
Value | The changed margin size in hundredths of an inch. | ||
PrintingSystemBase.PageSettingsChanged | PageSettingsChanged | none | none |
For more information on handling events, see Consuming Events in MSDN.
Implements
See Also
Feedback