DrawingAttributes.Clone 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
复制 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
返回
DrawingAttributes 对象的副本。
示例
以下示例演示如何复制 DrawingAttributes 对象。
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
注解
该方法 Clone 创建一个新 DrawingAttributes 对象,并使用与当前对象相同的值填充该对象。 还会复制任何自定义属性。