Condividi tramite


Proprietà InkOverlay.DynamicRendering

Aggiornamento: novembre 2007

Ottiene o imposta un valore che indica se il rendering dell'input penna viene eseguito durante l'operazione di disegno.

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 InkOverlay
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 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 dell'oggetto InkOverlay, theInkOverlay.

using Microsoft.Ink;
//. . .
private void menuInkDynamicRendering_Click(
    object sender,
    System.EventArgs e)
{
    theInkOverlay.DynamicRendering = !theInkOverlay.DynamicRendering;
    menuInkDynamicRendering.Checked = theInkOverlay.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 dell'oggetto InkOverlay, theInkOverlay.

Imports Microsoft.Ink
'. . .
Private Sub MenuInkDynamicRendering_Click(ByVal sender As Object, _
ByVal e As System.EventArgs)
    theInkOverlay.DynamicRendering = Not theInkOverlay.DynamicRendering
    menuInkDynamicRendering.Checked = theInkOverlay.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

Vedere anche

Riferimenti

InkOverlay Classe

Membri InkOverlay

Spazio dei nomi Microsoft.Ink

Ink

InkOverlay.AutoRedraw