The following tables list the members exposed by GoChangedEventArgs.
Public Properties
| Name | Description |
| Document | Gets or sets the GoDocument that raised the Changed event described by this EventArgs . |
| GoObject | Gets the Object as a GoObject. |
| Hint | Gets or sets the general category of document Changed event. |
| IsBeforeChanging | Gets or sets whether this event args/undoable edit was created by a document Changed event that represents a call to GoDocument.RaiseChanging or by a call to GoDocument.RaiseChanged. |
| NewInt | Gets or sets the new integer value information for a change. |
| NewRect | Gets or sets the new float, PositionF, SizeF, or RectangleF value information for a change. |
| NewValue | Gets or sets the new arbitrary object value information for a change, including boolean values. |
| Object | Gets or sets the object that was changed by the document Changed event. |
| OldInt | Gets or sets the previous or old integer value information for a change. |
| OldRect | Gets or sets the previous or old float, PositionF, SizeF, or RectangleF value information for a change. |
| OldValue | Gets or sets the previous or old arbitrary object value information for a change, including boolean values. |
| PresentationName | Gets the user-visible string description of this undoable edit. |
| SubHint | Gets or sets the more detailed kind of document Changed event, depending on the particular Hint value. |
Top
Public Methods
| Name | Description |
| CanRedo | This predicate returns true if you can call Redo. |
| CanUndo | This predicate returns true if you can call Undo. |
| Clear | Forget any references that this object may have. |
| FindBeforeChangingEdit | Search for a GoChangedEventArgs that matches this one's Document, Hint, SubHint, and Object, and whose IsBeforeChanging property is true. |
| GetFloat | If is true, this returns the X part of OldRect, otherwise it returns the X part of NewRect. |
| GetInt | If is true, this returns OldInt, otherwise it returns NewInt. |
| GetPoint | If is true, this returns the Location part of OldRect, otherwise it returns the Location part of NewRect. |
| GetRect | If is true, this returns OldRect, otherwise it returns NewRect. |
| GetSize | If is true, this returns the Size part of OldRect, otherwise it returns the Size part of NewRect. |
| GetValue | If is true, this returns OldValue, otherwise it returns NewValue. |
| Redo | Re-perform the document change after an Undo by calling GoDocument.ChangeValue. |
| ToString | Produce a description that may be useful in debugging event handling and the undo manager. |
| Undo | Reverse the effects of this document change by calling GoDocument.ChangeValue. |
Top
See Also