CustomStrokes.Add 方法

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

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

语法

声明
Public Sub Add ( _
    name As String, _
    strokes As Strokes _
)
用法
Dim instance As CustomStrokes
Dim name As String
Dim strokes As Strokes

instance.Add(name, strokes)
public void Add(
    string name,
    Strokes strokes
)
public:
void Add(
    String^ name, 
    Strokes^ strokes
)
public void Add(
    String name,
    Strokes strokes
)
public function Add(
    name : String, 
    strokes : Strokes
)

参数

备注

备注

如果调用此方法时将 name 参数设置为已存在于 CustomStrokes 集合中的名称,则会引发异常。

示例

在此示例中,使用指定的名称将传递的 Ink 对象的 Strokes 集合添加到该传递的 Ink 对象的 CustomStrokes 集合。如果指定的 CustomStrokes 集合已存在,则会引发异常。

Private Sub AddCustomStrokes(ByVal mName As String, ByVal mInk As Ink)
    Try
        ' if the name already exists, an exception will be raised
        mInk.CustomStrokes.Add(mName, mInk.Strokes)
    Catch E As ArgumentException
        ' this exception is raised when the named collection already exists
    End Try
End Sub
private void AddCustomStrokes(string mName, Ink mInk)
{
    try
    {
        // if the name already exists, an exception will be raised
        mInk.CustomStrokes.Add(mName, mInk.Strokes);
    }
    catch (ArgumentException)
    {
        // this exception is raised when the named collection already exists
    }
}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

CustomStrokes 类

CustomStrokes 成员

Microsoft.Ink 命名空间

Strokes

Ink