InkPicture.DynamicRendering, propriété
Mise à jour : November 2007
Obtient ou définit une valeur qui indique si l'entrée manuscrite est restituée telle qu'elle a été tracée.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
<BrowsableAttribute(True)> _
Public Property DynamicRendering As Boolean
'Utilisation
Dim instance As InkPicture
Dim value As Boolean
value = instance.DynamicRendering
instance.DynamicRendering = value
[BrowsableAttribute(true)]
public bool DynamicRendering { get; set; }
[BrowsableAttribute(true)]
public:
property bool DynamicRendering {
bool get ();
void set (bool value);
}
/** @property */
/** @attribute BrowsableAttribute(true) */
public boolean get_DynamicRendering()
/** @property */
/** @attribute BrowsableAttribute(true) */
public void set_DynamicRendering(boolean value)
public function get DynamicRendering () : boolean
public function set DynamicRendering (value : boolean)
Valeur de propriété
Type : System.Boolean
true si l'entrée manuscrite est restituée telle qu'elle a été tracée et qu'elle apparaît à l'écran.
false si l'entrée manuscrite n'est pas restituée et n'apparaît pas sur l'écran.
Exemples
Cet exemple C# crée un gestionnaire d'événements pour un élément de menu qui active et désactive le rendu dynamique avec un contrôle InkPicture, theInkPicture.
[C#]
using Microsoft.Ink;
//. . .
private void menuInkDynamicRendering_Click(
object sender,
System.EventArgs e)
{
theInkPicture.DynamicRendering = !theInkPicture.DynamicRendering;
menuInkDynamicRendering.Checked = theInkPicture.DynamicRendering;
}
//. . .
Cet exemple Microsoft® Visual Basic® .NET crée un gestionnaire d'événements pour un élément de menu qui active et désactive le rendu dynamique avec un contrôle InkPicture, theInkPicture.
[Visual Basic]
Imports Microsoft.Ink
'. . .
Private Sub MenuInkDynamicRendering_Click(ByVal sender As Object, _
ByVal e As System.EventArgs)
theInkPicture.DynamicRendering = Not theInkPicture.DynamicRendering
menuInkDynamicRendering.Checked = theInkPicture.DynamicRendering
End Sub
'. . .
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