InkRecognizerGuide.WritingBoxLeft, propriété
Mise à jour : November 2007
Obtient ou définit la coordonnée gauche 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 WritingBoxLeft As Double
'Utilisation
Dim instance As InkRecognizerGuide
Dim value As Double
value = instance.WritingBoxLeft
instance.WritingBoxLeft = value
public double WritingBoxLeft { get; set; }
public:
property double WritingBoxLeft {
double get ();
void set (double value);
}
/** @property */
public double get_WritingBoxLeft()
/** @property */
public void set_WritingBoxLeft(double value)
public function get WritingBoxLeft () : double
public function set WritingBoxLeft (value : double)
Valeur de propriété
Type : System.Double
Coordonnée gauche 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é WritingBoxLeft 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