DynamicRenderer.OnDrawingAttributesReplaced Метод

Определение

Происходит при изменении свойства DrawingAttributes.

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

Примеры

В следующем примере демонстрируется метод переопределения OnDrawingAttributesReplaced.

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

Примечания для тех, кто наследует этот метод

При переопределении OnDrawingAttributesReplaced() в производном классе обязательно вызовите метод базового класса OnDrawingAttributesReplaced() .

Применяется к