InkRecognizerGuide.Rows 屬性
取得或設定 recognition guide 中的資料列數目。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.dll 中)
語法
'宣告
Public Property Rows As Integer
'用途
Dim instance As InkRecognizerGuide
Dim value As Integer
value = instance.Rows
instance.Rows = value
public int Rows { get; set; }
public:
property int Rows {
int get ();
void set (int value);
}
/** @property */
public int get_Rows()
/** @property */
public void set_Rows(int value)
public function get Rows () : int
public function set Rows (value : int)
屬性值
型別:System.Int32
辨識輔助線中的列數。
備註
列高是由繪製方塊的大小決定。若要取得或設定繪製方塊,請使用 DrawnBoxTop、DrawnBoxLeft、DrawnBoxBottom 和 DrawnBoxRight 屬性。
Columns 和 Rows 屬性的值可以用來控制您所使用的辨識輸入種類。當 Columns 和 Rows 屬性都大於零時,會使用方塊式輸入。下表列出可能的輸入模式,以及針對每種模式的 Columns 和 Rows 屬性設定的值。
針對下列輸入 |
將 Rows 屬性設定為 |
並將 Columns 屬性設定為 |
---|---|---|
自由輸入 |
0 |
0 |
包含 1 行的垂直線式輸入。 |
0 |
1 |
包含 n 行的垂直線式輸入 |
0 |
n |
包含 1 行的水平線式輸入 |
1 |
0 |
包含 n 行的水平線式輸入 |
n |
0 |
包含 1 個方塊的方塊式輸入 |
1 |
1 |
包含 n 個方塊之 1 欄的方塊式輸入 |
1 |
n |
在由 x 列和 z 欄構成之方塊格線中的方塊式輸入 |
x |
z |
範例
下列動作會同時設定 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;
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
InkRecognizerGuideDrawnBox()