Udostępnij za pośrednictwem


DrawingAttributes.Clone Metoda

Definicja

Kopiuje obiekt DrawingAttributes.

public:
 virtual System::Windows::Ink::DrawingAttributes ^ Clone();
public virtual System.Windows.Ink.DrawingAttributes Clone ();
abstract member Clone : unit -> System.Windows.Ink.DrawingAttributes
override this.Clone : unit -> System.Windows.Ink.DrawingAttributes
Public Overridable Function Clone () As DrawingAttributes

Zwraca

Kopia DrawingAttributes obiektu.

Przykłady

W poniższym przykładzie pokazano, jak skopiować DrawingAttributes obiekt.

void CopyAttributes(Stroke someStroke)
{
    DrawingAttributes attributes = new DrawingAttributes();
    attributes.Color = Colors.Red;
    someStroke.DrawingAttributes = attributes.Clone();
}
Sub CopyAttributes(ByVal someStroke As Stroke)
    Dim attributes As New DrawingAttributes()
    attributes.Color = Colors.Red
    someStroke.DrawingAttributes = attributes.Clone()
End Sub

Uwagi

Metoda Clone tworzy nowy DrawingAttributes obiekt i wypełnia go tymi samymi wartościami co bieżący obiekt. Wszystkie właściwości niestandardowe są również kopiowane.

Dotyczy

Zobacz też