Partager via


InkRecognizerGuide.WritingBoxRight, propriété

Mise à jour : November 2007

Obtient ou définit la coordonnée droite de la zone d'écriture invisible du repère de reconnaissance dans laquelle il est possible d'écrire.

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

Syntaxe

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

value = instance.WritingBoxRight

instance.WritingBoxRight = value
public double WritingBoxRight { get; set; }
public:
property double WritingBoxRight {
    double get ();
    void set (double value);
}
/** @property */
public double get_WritingBoxRight()
/** @property */
public  void set_WritingBoxRight(double value)
public function get WritingBoxRight () : double
public function set WritingBoxRight (value : double)

Valeur de propriété

Type : System.Double
Coordonnée droite pour la zone d'écriture invisible du InkRecognizerGuide dans laquelle il est possible d'écrire.

Notes

La zone d'écriture possède une marge d'erreur pour les utilisateurs qui écrivent à l'extérieur de la zone de dessin. Utilisez les propriétés DrawnBoxTop, DrawnBoxLeft, DrawnBoxBottom et DrawnBoxRight pour définir la zone de dessin.

La propriété WritingBoxRight lève une exception ArgumentOutOfRangeException si vous essayez de lui affecter une valeur inférieure à AnalysisRegion.MinXY ou supérieure à AnalysisRegion.MaxXY.

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