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
型別:System.String
要加入至 CustomStrokes 集合之 Strokes 集合的名稱。
- strokes
型別:Microsoft.Ink.Strokes
要加入至 CustomStrokes 集合的 Strokes 集合。
備註
注意事項: |
---|
如果您透過將 name 參數設定為 CustomStrokes 集合中已存在的名稱來呼叫這個方法,則會擲回例外狀況 (Exception)。 |
範例
在這個範例中,會使用指定的名稱在傳遞的 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