DrawingAttributes.Height Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta l'altezza dello stilo utilizzato per disegnare l'oggetto Stroke.
public:
property double Height { double get(); void set(double value); };
public double Height { get; set; }
member this.Height : double with get, set
Public Property Height As Double
Valore della proprietà
Valore che indica l'altezza dello stilo utilizzato per disegnare l'oggetto Stroke.
Eccezioni
Esempio
Nell'esempio seguente viene illustrato come impostare la Height proprietà. Nell'esempio si presuppone che l'applicazione abbia un InkCanvas oggetto denominato inkCanvas1
e due DrawingAttributes oggetti denominati inkDA
e highlighterDA
. Per l'esempio completo, vedere panoramica della DrawingAttributes classe.
// Set up the DrawingAttributes for the pen.
inkDA = new DrawingAttributes();
inkDA.Color = Colors.SpringGreen;
inkDA.Height = 5;
inkDA.Width = 5;
inkDA.FitToCurve = false;
inkDA.StylusTipTransform = new Matrix(1, 0, 0, 5, 0, 0);
// Set up the DrawingAttributes for the highlighter.
highlighterDA = new DrawingAttributes();
highlighterDA.Color = Colors.Orchid;
highlighterDA.IsHighlighter = true;
highlighterDA.IgnorePressure = true;
highlighterDA.StylusTip = StylusTip.Rectangle;
highlighterDA.Height = 30;
highlighterDA.Width = 10;
inkCanvas1.DefaultDrawingAttributes = inkDA;
' Set up the DrawingAttributes for the pen.
inkDA = New Ink.DrawingAttributes()
With inkDA
.Color = Colors.SpringGreen
.Height = 5
.Width = 5
.FitToCurve = True
.StylusTipTransform = New Matrix(1, 0, 0, 1, 20, 0)
End With
' Set up the DrawingAttributes for the highlighter.
highlighterDA = New Ink.DrawingAttributes()
With highlighterDA
.Color = Colors.Orchid
.IsHighlighter = True
.IgnorePressure = True
.StylusTip = StylusTip.Rectangle
.Height = 30
.Width = 10
End With
inkCanvas1.DefaultDrawingAttributes = inkDA
Commenti
I fattori seguenti influiscono sull'altezza e la larghezza di un Stroke oggetto quando viene eseguito il rendering, ma non sul valore della Height proprietà.
Quantità di pressione applicata allo stilo quando Stroke viene disegnato.
Il valore della proprietà StylusTipTransform.
Se si imposta la Height proprietà su 0 pixel indipendenti dal dispositivo (DIP), viene modificata in 2 DIP.
Utilizzo del testo XAML
Questa proprietà non viene in genere usata in XAML.