'宣言 Public Function DrawOrMeasure( _ ByVal drawGraphics As System.Object, _ ByVal width As System.Double, _ ByVal height As System.Double, _ ByVal startIndex As System.Integer, _ ByVal length As System.Integer, _ ByVal measureOnly As System.Boolean _ ) As C1RichText.MeasureInfo
'使用法 Dim instance As C1RichText Dim drawGraphics As System.Object Dim width As System.Double Dim height As System.Double Dim startIndex As System.Integer Dim length As System.Integer Dim measureOnly As System.Boolean Dim value As C1RichText.MeasureInfo value = instance.DrawOrMeasure(drawGraphics, width, height, startIndex, length, measureOnly)
public C1RichText.MeasureInfo DrawOrMeasure( System.object drawGraphics, System.double width, System.double height, System.int startIndex, System.int length, System.bool measureOnly )
パラメータ
- drawGraphics
- Graphics object on which text will be drawn. Can be null if only measuring should be performing.
- width
- Width is twips
- height
- Height is twips
- startIndex
- Index of first char of text's range.
- length
- Length of text range, if this parameter is 0 or less than zero then all text from startIndex will be calculated.
- measureOnly
- Indicates whether text should be only measured or not.
戻り値の型
Returns the C1RichTextMeasureInfo which contains the measured info.