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
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.