Proprietà DrawingAttributes.Height
Aggiornamento: novembre 2007
Ottiene o imposta la dimensione dell'asse y, o altezza, della punta della penna durante il disegno dell'input penna.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Sintassi
'Dichiarazione
Public Property Height As Single
'Utilizzo
Dim instance As DrawingAttributes
Dim value As Single
value = instance.Height
instance.Height = value
public float Height { get; set; }
public:
property float Height {
float get ();
void set (float value);
}
/** @property */
public float get_Height()
/** @property */
public void set_Height(float value)
public function get Height () : float
public function set Height (value : float)
Valore proprietà
Tipo: System.Single
Dimensione dell'asse y, o altezza, della punta della penna durante il disegno dell'input penna.
Valore |
Significato |
---|---|
1 |
L'altezza della punta della penna è una (1) unità HIMETRIC. |
Single |
Valore che rappresenta l'altezza della punta della penna, in unità HIMETRIC. |
Note
La proprietà Height è in unità HIMETRIC.
Questa proprietà si applica solo alla punta della penna Rectangle, ovvero il valore di enumerazione PenTip. Il valore rappresenta l'altezza del lato del rettangolo. Se si utilizza il valore della punta della penna Ball, l'altezza della punta della penna è uguale alla proprietà Width e la proprietà Height viene ignorata.
La precisione è limitata a un millesimo di unità HIMETRIC (tre cifre a destra del separatore decimale). Ad esempio, se si specifica un valore di 2,0006, la misurazione più precisa sarà 2,001.
Esempi
In questo esempio C# vengono creati gestori di eventi per le voci di menu che modificano la proprietà Height di un oggetto DrawingAttributes.
using Microsoft.Ink;
//...
private System.Windows.Forms.MenuItem menuInkHeightShort;
private System.Windows.Forms.MenuItem menuInkHeightTall;
private InkCollector theInkCollector;
private System.Windows.Forms.MenuItem checkedHeight;
//...
private void menuInkHeightShort_Click(
object sender, System.EventArgs e)
{
checkedHeight.Checked = false;
// Set the height to about one pixel in HIMETRIC
theInkCollector.DefaultDrawingAttributes.Height = 30;
checkedHeight = menuInkHeightShort;
checkedHeight.Checked = true;
Refresh();
}
private void menuInkHeightTall_Click(
object sender, System.EventArgs e)
{
checkedHeight.Checked = false;
// Set the height about ten pixels tall in HIMETRIC
theInkCollector.DefaultDrawingAttributes.Height = 300;
checkedHeight = menuInkHeightTall;
checkedHeight.Checked = true;
Refresh();
}
In questo esempio Microsoft® Visual Basic® .NET vengono creati gestori di eventi per le voci di menu che modificano la proprietà Height di un oggetto DrawingAttributes.
Imports Microsoft.Ink
'...
Dim MenuInkHeightShort As System.Windows.Forms.MenuItem
Dim MenuInkHeightTall As System.Windows.Forms.MenuItem
Dim CheckedHeight As System.Windows.Forms.MenuItem
Dim theInkCollector As InkCollector
'...
Private Sub MenuInkHeightShort_Click( _
ByVal sender As Object, ByVal e As System.EventArgs)
CheckedHeight.Checked = False
'Set the pen about one pixel tall in HIMETRIC
theInkCollector.DefaultDrawingAttributes.Height = 30
CheckedHeight = MenuInkHeightShort
CheckedHeight.Checked = True
Refresh()
End Sub
Private Sub MenuInkHeightTall_Click( _
ByVal sender As Object, ByVal e As System.EventArgs)
CheckedHeight.Checked = False
'Set the pen about ten pixels tall in HIMETRIC
theInkCollector.DefaultDrawingAttributes.Height = 300
CheckedHeight = MenuInkHeightTall
CheckedHeight.Checked = True
Refresh()
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