RecognizerGuide.Midline Property
Gets or sets the midline height. The midline height is the distance from the baseline to the midline, of the drawn box.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in microsoft.ink.dll)
Syntax
'Declaration
Public Property Midline As Integer
'Usage
Dim instance As RecognizerGuide
Dim value As Integer
value = instance.Midline
instance.Midline = value
public int Midline { get; set; }
public:
property int Midline {
int get ();
void set (int value);
}
/** @property */
public int get_Midline ()
/** @property */
public void set_Midline (int value)
public function get Midline () : int
public function set Midline (value : int)
Not applicable.
Property Value
The midline height of the guide in HIMETRIC units.
Remarks
The value is 0 if the midline is not present.
Example
This C# example sets all of the values in the guide simultaneously.
private void ResetGuideSettings(
ref RecognizerGuide theRecognizerGuide,
int columns,
int rows,
int midline,
Rectangle drawnBox,
Rectangle writingBox)
{
theRecognizerGuide.Columns = columns;
theRecognizerGuide.Rows = rows;
theRecognizerGuide.Midline = midline;
theRecognizerGuide.DrawnBox = drawnBox;
theRecognizerGuide.WritingBox = writingBox;
}
This Microsoft® Visual Basic® .NET example sets all of the values in the guide simultaneously.
Private Sub ResetGuideSettings( _
ByRef theRecognizerGuide As RecognizerGuide, _
ByVal columns As Integer, _
ByVal rows As Integer, _
ByVal midline As Integer, _
ByVal drawnBox As Rectangle, _
ByVal writingBox As Rectangle)
theRecognizerGuide.Columns = columns
theRecognizerGuide.Rows = rows
theRecognizerGuide.Midline = midline
theRecognizerGuide.DrawnBox = drawnBox
theRecognizerGuide.WritingBox = writingBox
End Sub
Platforms
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
RecognizerGuide Structure
RecognizerGuide Members
Microsoft.Ink Namespace