GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoPropertyUserControl Class / ModifyObjects Method
In This Topic
    ModifyObjects Method (GoPropertyUserControl)
    In This Topic
    This virtual method must be overridden to call PropertyModifier.ModifyProperty(Int32,GoPropertyModifierPart,GoPropertyModifierChoice,Object) for each of the properties exhibited by Controls in this UserControl.
    Syntax
    public virtual void ModifyObjects()
    Remarks
    Your override should check for a null value of PropertyModifier and if IsUpdating is true -- in either case this method should do nothing. Otherwise you should call GoPropertyModifier.StartTransaction, make the needed calls to ModifyProperty(Int32,GoPropertyModifierPart,GoPropertyModifierChoice,Object), and then call GoPropertyModifier.FinishTransaction.
    See Also