Method MeasureLine
MeasureLine(int, int, int)
Measures part of the string given at by its index.
public virtual double MeasureLine(int index, int pos, int len)
Parameters
index
intIndex of line to measure.
pos
intStart character of string to measure.
len
intNumber of characters to measure.
Returns
- double
Width of the measured part of the string.
MeasureLine(int, int, int, double, out int, bool)
Measures part of the string given by its index.
public virtual double MeasureLine(int index, int pos, int len, double width, out int chars, bool exact)
Parameters
index
intIndex of line to measure.
pos
intStart character of string to measure.
len
intNumber of characters to measure.
width
doubleMaximum length of the string.
chars
intReceive real number of measured chars.
exact
boolSpecifies whether the calculating should be precise.
Returns
- double
Width of the measured part of the string.
MeasureLine(string, StringItemInfo[], int, int)
Measures part of given string.
public virtual double MeasureLine(string line, StringItemInfo[] colorData, int pos, int len)
Parameters
line
stringText to measure.
colorData
StringItemInfo[]Color data attached to the given string.
pos
intStart character of string to measure.
len
intNumber of characters to measure.
Returns
- double
Width of the measured part of the string.
MeasureLine(string, StringItemInfo[], int, int, double, out int, bool, bool, bool)
Measures part of given string.
public virtual double MeasureLine(string line, StringItemInfo[] colorData, int pos, int len, double width, out int chars, bool measureChars, bool addSpace, bool exact)
Parameters
line
stringText to measure.
colorData
StringItemInfo[]Color data attached to the given string.
pos
intStart character of string to measure.
len
intNumber of characters to measure.
width
doubleMaximum length of the string.
chars
intReceive real number of measured chars.
measureChars
boolSpecifies whether the method should measure how much characters fits to the given width.
addSpace
boolSpecifies whether spaces are added to the end of string if needed.
exact
boolSpecifies whether the calculating should be precise.
Returns
- double
Width of the measured part of the string.
MeasureLine(string, StringItemInfo[], int, int, double, out int, bool)
Measures part of given string.
public double MeasureLine(string line, StringItemInfo[] colorData, int pos, int len, double width, out int chars, bool exact)
Parameters
line
stringText to measure.
colorData
StringItemInfo[]Color data attached to the given string.
pos
intStart character of string to measure.
len
intNumber of characters to measure.
width
doubleMaximum length of the string.
chars
intReceive real number of measured chars.
exact
boolSpecifies whether the calculating should be precise.
Returns
- double
Width of the measured part of the string.