Freigeben über


InkRecognizerGuide.WritingBoxBottom-Eigenschaft

Ruft die untere Koordinate des unsichtbaren Schreibbereichs des Führungslinienfelds, in den geschrieben werden kann, auf oder legt diese fest.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Syntax

'Declaration
Public Property WritingBoxBottom As Double
'Usage
Dim instance As InkRecognizerGuide
Dim value As Double

value = instance.WritingBoxBottom

instance.WritingBoxBottom = value
public double WritingBoxBottom { get; set; }
public:
property double WritingBoxBottom {
    double get ();
    void set (double value);
}
/** @property */
public double get_WritingBoxBottom()
/** @property */
public  void set_WritingBoxBottom(double value)
public function get WritingBoxBottom () : double
public function set WritingBoxBottom (value : double)

Eigenschaftenwert

Typ: System.Double
Die untere Koordinate des unsichtbaren Schreibbereichs des InkRecognizerGuide, in den geschrieben werden kann.

Hinweise

Das Schreibfeld bietet eine Fehlertoleranz für Benutzer, die außerhalb des gezeichneten Felds schreiben. Verwenden Sie die Eigenschaften DrawnBoxTop, DrawnBoxLeft, DrawnBoxBottom und DrawnBoxRight, um das gezeichnete Feld festzulegen.

Die WritingBoxBottom-Eigenschaft löst eine ArgumentOutOfRangeException-Ausnahme aus, wenn Sie versuchen, sie auf einen Wert kleiner als AnalysisRegion.MinXY oder größer als AnalysisRegion.MaxXY festzulegen.

Beispiele

Im folgenden Code werden alle Werte im InkRecognizerGuide gleichzeitig festgelegt.

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;

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

InkRecognizerGuide-Klasse

InkRecognizerGuide-Member

System.Windows.Ink-Namespace