Modifier

DynamicRenderer.OnDrawingAttributesReplaced Method

Definition

Occurs when the DrawingAttributes property changes.

protected:
 virtual void OnDrawingAttributesReplaced();
protected virtual void OnDrawingAttributesReplaced ();
abstract member OnDrawingAttributesReplaced : unit -> unit
override this.OnDrawingAttributesReplaced : unit -> unit
Protected Overridable Sub OnDrawingAttributesReplaced ()

Examples

The following example overrides the OnDrawingAttributesReplaced method.

protected override void OnDrawingAttributesReplaced()
{
    base.OnDrawingAttributesReplaced();

    MessageBox.Show(this.DrawingAttributes.Color.ToString());
}
Protected Overrides Sub OnDrawingAttributesReplaced()

    MyBase.OnDrawingAttributesReplaced()

    MessageBox.Show(Me.DrawingAttributes.Color.ToString())

End Sub

Notes to Inheritors

When overriding OnDrawingAttributesReplaced() in a derived class, be sure to call the base class' OnDrawingAttributesReplaced() method.

Applies to