Compartir a través de


InkRecognizerGuide.WritingBoxLeft (Propiedad)

Actualización: noviembre 2007

Obtiene o establece la coordenada izquierda del área de escritura no visible de la guía de reconocimiento en la que puede tener lugar la escritura.

Espacio de nombres:  System.Windows.Ink
Ensamblado:  IAWinFX (en IAWinFX.dll)

Sintaxis

'Declaración
Public Property WritingBoxLeft As Double
'Uso
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)

Valor de propiedad

Tipo: System.Double
Coordenada izquierda del área de escritura no visible de InkRecognizerGuide donde puede tener lugar la escritura.

Comentarios

El cuadro de escritura proporciona un margen de error a los usuarios que escriben fuera del cuadro dibujado. Utilice las propiedades DrawnBoxTop, DrawnBoxLeft, DrawnBoxBottom y DrawnBoxRight para definir el cuadro dibujado.

La propiedad WritingBoxLeft provoca una excepción ArgumentOutOfRangeException si se intenta establecer en un valor menor que AnalysisRegion.MinXY o mayor que AnalysisRegion.MaxXY.

Ejemplos

A continuación, se establecen todos los valores de InkRecognizerGuide simultáneamente.

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;

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

InkRecognizerGuide (Clase)

InkRecognizerGuide (Miembros)

System.Windows.Ink (Espacio de nombres)