CustomStrokes.Remove 方法

CustomStrokes 集合中移除 Strokes 集合。

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

语法

声明
Public Sub Remove ( _
    s As String _
)
用法
Dim instance As CustomStrokes
Dim s As String

instance.Remove(s)
public void Remove(
    string s
)
public:
void Remove(
    String^ s
)
public void Remove(
    String s
)
public function Remove(
    s : String
)

参数

备注

调用此方法时,将移除用 s 参数添加的 Strokes 集合。

CustomStrokes 集合是墨迹数据引用集,不是实际数据本身。此方法只从数据的快照或对数据的引用中移除 Strokes 集合,而不从实际墨迹数据中移除 Strokes 集合。若要从实际墨迹数据中删除集合,请调用 Ink.DeleteStrokes 方法。

如果 name 与 CustomStrokes 集合的现有成员不匹配,则会引发 System.ArgumentException

示例

在此示例中,将移除 CustomStrokes 集合中具有指定名称的 Strokes 集合。如果没有具有指定名称的 Strokes 集合,则会引发异常。

Private Sub RemoveCustomStrokes(ByVal mName As String, ByVal mInk As Ink)
    Try
        ' if the name does not exist, an exception will be raised
        mInk.CustomStrokes.Remove(mName)
    Catch E As ArgumentException
        ' this exception is raised when the named collection does not exist
    End Try

End Sub
private void RemoveCustomStrokes(string mName, Ink mInk)
{
    try
    {
        // if the name does not exist, an exception will be raised
        mInk.CustomStrokes.Remove(mName);
    }
    catch (ArgumentException)
    {
        // this exception is raised when the named collection does not exist
    }

}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

CustomStrokes 类

CustomStrokes 成员

Microsoft.Ink 命名空间

Ink.DeleteStrokes

Ink