DynamicRenderer.OnDrawingAttributesReplaced Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.