DrawingAttributes.Clone 方法

返回此 DrawingAttributes 对象的副本。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Function Clone As DrawingAttributes
用法
Dim instance As DrawingAttributes
Dim returnValue As DrawingAttributes

returnValue = instance.Clone()
public DrawingAttributes Clone()
public:
DrawingAttributes^ Clone()
public DrawingAttributes Clone()
public function Clone() : DrawingAttributes

返回值

类型:Microsoft.Ink.DrawingAttributes
DrawingAttributes 对象的新副本。

备注

通常克隆绘制属性 (Attribute) 的主控副本,修改一个或多个属性 (Attribute),并设置 DrawingAttributes 属性 (Property)(例如 Cursor.DrawingAttributesInkEdit.DrawingAttributesStroke.DrawingAttributes)或者调用 Strokes.ModifyDrawingAttributes 方法。

示例

此 C# 示例克隆与 Stroke 对象 theStroke 相关联的 DrawingAttributes 对象。

DrawingAttributes theClone = theStroke.DrawingAttributes.Clone();

此 Microsoft(R) Visual Basic(R) .NET 示例克隆与 Stroke 对象 theStroke 相关联的 DrawingAttributes 对象。

Dim theClone As DrawingAttributes = theStroke.DrawingAttributes.Clone()

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

DrawingAttributes 类

DrawingAttributes 成员

Microsoft.Ink 命名空间

DrawingAttributes.DrawingAttributes

Strokes.ModifyDrawingAttributes