InkRecognizerGuide.WritingBoxRight-Eigenschaft
Ruft die rechte 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 WritingBoxRight As Double
'Usage
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)
Eigenschaftenwert
Typ: System.Double
Die rechte 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 WritingBoxRight-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