Strokes.Add 方法 (Strokes)

将一个 Strokes 集合添加到 Strokes 集合。

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

语法

声明
Public Sub Add ( _
    strokes As Strokes _
)
用法
Dim instance As Strokes
Dim strokes As Strokes

instance.Add(strokes)
public void Add(
    Strokes strokes
)
public:
void Add(
    Strokes^ strokes
)
public void Add(
    Strokes strokes
)
public function Add(
    strokes : Strokes
)

参数

备注

Stroke 对象必须已在 Ink 对象中,并且不能属于其他 Ink 对象。此外,此方法不复制或按照其他方式修改 Ink 对象,而仅将该 Stroke 添加到 Strokes 集合。

示例

此示例将 Stroke 对象添加到新创建的 Strokes 集合。此集合反过来添加到其他 Strokes 集合中。传递给示例方法的 Ink 对象用于创建新的 Strokes 集合和新的 Stroke 对象。通过调用 CreateStroke 方法创建新的 Stroke 对象时,新创建的 Stroke 自动添加到 Ink 对象的主 Strokes() 集合。此外,如此示例所示,新创建的 Stroke 对象可以添加到其他 Strokes 集合中。

Private Sub AddStrokes(ByVal mInk As Ink)
    ' create a new Strokes collection
    Dim newStrokes1 As Strokes = mInk.CreateStrokes()
    ' create a new Stroke
    Dim points As Point() = {New Point(500, 500), New Point(500, 2500)}
    Dim newStroke As Stroke = mInk.CreateStroke(points)
    ' add the new Stroke to the Strokes collection
    newStrokes1.Add(newStroke)
    ' create another Strokes collection
    Dim newStrokes2 As Strokes = mInk.CreateStrokes()
    ' add the first Strokes collection to the second Strokes collection
    newStrokes2.Add(newStrokes1)
End Sub
private void AddStrokes(Ink mInk)
{ 
    // create a new Strokes collection
    Strokes newStrokes1 = mInk.CreateStrokes();
    // create a new Stroke
    Point[] points = { new Point(500, 500), new Point(500, 2500) };
    Stroke newStroke = mInk.CreateStroke(points);
    // add the new Stroke to the Strokes collection
    newStrokes1.Add(newStroke);
    // create another Strokes collection
    Strokes newStrokes2 = mInk.CreateStrokes();
    // add the first Strokes collection to the second Strokes collection
    newStrokes2.Add(newStrokes1);
}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

Strokes 类

Strokes 成员

Add 重载

Microsoft.Ink 命名空间

Stroke

Strokes