Proprietà InkPicture.DynamicRendering
Aggiornamento: novembre 2007
Ottiene o imposta un valore che indica se eseguire il rendering di un input penna mentre questo viene disegnato.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Sintassi
'Dichiarazione
<BrowsableAttribute(True)> _
Public Property DynamicRendering As Boolean
'Utilizzo
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)
Valore proprietà
Tipo: System.Boolean
true se durante il disegno viene eseguito il rendering dell'input penna e questo viene visualizzato sullo schermo.
false se durante il disegno non viene eseguito il rendering dell'input penna e questo non viene visualizzato sullo schermo.
Esempi
In questo esempio di C# viene creato un gestore eventi per una voce di menu che attiva e disattiva il rendering dinamico di un controllo InkPicture, theInkPicture.
[C#]
using Microsoft.Ink;
//. . .
private void menuInkDynamicRendering_Click(
object sender,
System.EventArgs e)
{
theInkPicture.DynamicRendering = !theInkPicture.DynamicRendering;
menuInkDynamicRendering.Checked = theInkPicture.DynamicRendering;
}
//. . .
In questo esempio di Microsoft® Visual Basic® .NET viene creato un gestore eventi per una voce di menu che attiva e disattiva il rendering dinamico di un controllo 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
'. . .
Piattaforme
Windows Vista
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0