Ink.CustomStrokes, propriété
Mise à jour : November 2007
Rend la collection CustomStrokes persistante avec l'entrée manuscrite.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public ReadOnly Property CustomStrokes As CustomStrokes
'Utilisation
Dim instance As Ink
Dim value As CustomStrokes
value = instance.CustomStrokes
public CustomStrokes CustomStrokes { get; }
public:
property CustomStrokes^ CustomStrokes {
CustomStrokes^ get ();
}
/** @property */
public CustomStrokes get_CustomStrokes()
public function get CustomStrokes () : CustomStrokes
Valeur de propriété
Type : Microsoft.Ink.CustomStrokes
Collection CustomStrokes rendue persistante avec l'entrée manuscrite.
Exemples
Dans cet exemple, la collection Strokes de l'objet Ink passé est ajoutée à la collection CustomStrokes du même objet Ink passé à l'aide du nom spécifié. Si la collection CustomStrokes nommée existe déjà, une exception est levée.
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
}
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0