[]
Gets the List<T> of PdfPushButton.Action objects from the current collection associated with the specified button state change (multiple actions can be associated with each state change).
Returns null if no actions are associated with the specified state change in the current PdfPushButton.ActionCollection.
public List<PdfPushButton.Action> this[ButtonStateChange change] { get; }
Type | Name | Description |
---|---|---|
ButtonStateChange | change | The type of state change for which to return the associated actions. |
Type | Description |
---|---|
List<PdfPushButton.Action> | The list of PdfPushButton.Action objects associated with the specified state change. |
Gets or sets the PdfPushButton.Action from the current collection, with the specified index among actions associated with the specified button state change (ButtonStateChange).
public PdfPushButton.Action this[ButtonStateChange change, int index] { get; set; }
Type | Name | Description |
---|---|---|
ButtonStateChange | change | The type of state change for which to return the associated actions. |
int | index | The action index among actions associated with |
Type | Description |
---|---|
PdfPushButton.Action | The action with the specified |