Partager via


InkRecognizerGuide.Midline, propriété

Mise à jour : November 2007

Obtient ou définit la hauteur de ligne médiane. La hauteur de ligne médiane est la distance entre la ligne de base et la ligne médiane de la zone de dessin.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.dll)

Syntaxe

'Déclaration
Public Property Midline As Double
'Utilisation
Dim instance As InkRecognizerGuide
Dim value As Double

value = instance.Midline

instance.Midline = value
public double Midline { get; set; }
public:
property double Midline {
    double get ();
    void set (double value);
}
/** @property */
public double get_Midline()
/** @property */
public  void set_Midline(double value)
public function get Midline () : double
public function set Midline (value : double)

Valeur de propriété

Type : System.Double
Hauteur de ligne médiane du repère.

Notes

Une médiane est une ligne horizontale imaginaire avec laquelle le haut du corps principal de chaque caractère est aligné et qui exclut la partie d'une minuscule qui s'étend au-dessus du corps principal.

S'il n'y a pas de médiane, la valeur est égale à 0.

Exemples

L'exemple suivant définit simultanément toutes les valeurs dans le InkRecognizerGuide.

Dim guideBoxTop As Double = 0
Dim guideBoxBottom As Double = 50
Dim guideBoxLeft As Double = 0
Dim guideBoxRight As Double = 600

Dim WRITINGBOXMARGIN As Integer = 10

' Find the midline of the guide box.
Dim midline As Double = (guideBoxBottom - guideBoxTop) / 2 + guideBoxTop

theGuide.Rows = 1
theGuide.Columns = 0
theGuide.Midline = midline

theGuide.WritingBoxLeft = guideBoxLeft - WRITINGBOXMARGIN
theGuide.WritingBoxTop = guideBoxTop - WRITINGBOXMARGIN
theGuide.WritingBoxRight = guideBoxRight + WRITINGBOXMARGIN
theGuide.WritingBoxBottom = guideBoxBottom + WRITINGBOXMARGIN

theGuide.DrawnBoxLeft = guideBoxLeft
theGuide.DrawnBoxTop = guideBoxTop
theGuide.DrawnBoxRight = guideBoxRight
theGuide.DrawnBoxBottom = guideBoxBottom
double guideBoxTop = 0;
double guideBoxBottom = 50;
double guideBoxLeft = 0;
double guideBoxRight = 600;

const int WRITINGBOXMARGIN = 10;

// Find the midline of the guide box.
double midline = (guideBoxBottom - guideBoxTop) / 2 + guideBoxTop;

theGuide.Rows = 1;
theGuide.Columns = 0;
theGuide.Midline = midline;

theGuide.WritingBoxLeft = guideBoxLeft - WRITINGBOXMARGIN;
theGuide.WritingBoxTop = guideBoxTop - WRITINGBOXMARGIN;
theGuide.WritingBoxRight = guideBoxRight + WRITINGBOXMARGIN;
theGuide.WritingBoxBottom = guideBoxBottom + WRITINGBOXMARGIN;

theGuide.DrawnBoxLeft = guideBoxLeft;
theGuide.DrawnBoxTop = guideBoxTop;
theGuide.DrawnBoxRight = guideBoxRight;
theGuide.DrawnBoxBottom = guideBoxBottom;

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

Voir aussi

Référence

InkRecognizerGuide, classe

Membres InkRecognizerGuide

System.Windows.Ink, espace de noms