GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDocument Class / Changed Event
In This Topic
    Changed Event
    In This Topic
    The Changed event is raised whenever a document or a part of a document is modified.
    Syntax
    public event GoChangedEventHandler Changed
    Event Data

    The event handler receives an argument of type GoChangedEventArgs containing data related to this event. The following GoChangedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the GoDocument that raised the Changed event described by this EventArgs.  
    Gets the Object as a GoObject.  
    Gets or sets the general category of document Changed event.  
    Gets or sets whether this event args/undoable edit was created by a document Changed event that represents a call to RaiseChanging or by a call to RaiseChanged.  
    Gets or sets the new integer value information for a change.  
    Gets or sets the new float, PositionF, SizeF, or RectangleF value information for a change.  
    Gets or sets the new arbitrary object value information for a change, including boolean values.  
    Gets or sets the object that was changed by the document Changed event.  
    Gets or sets the previous or old integer value information for a change.  
    Gets or sets the previous or old float, PositionF, SizeF, or RectangleF value information for a change.  
    Gets or sets the previous or old arbitrary object value information for a change, including boolean values.  
    Gets the user-visible string description of this undoable edit.  
    Gets or sets the more detailed kind of document Changed event, depending on the particular Hint value.  
    Remarks
    Any Changed event handlers should not modify this document or any part of this document.
    See Also