'Declaration
Public Function TextExtentEx( _ ByVal text As String, _ ByVal maxExtent As Integer, _ ByRef fitCharNumber As Integer, _ ByVal fitExtents() As Integer _ ) As Size
public Size TextExtentEx( string text, int maxExtent, out int fitCharNumber, int[] fitExtents )
Parameters
- text
- A string for which extents are to be retrieved.
- maxExtent
- Specifies the maximum allowable width, in logical units, of the formatted string.
- fitCharNumber
- Receives a count of the maximum number of characters that will fit in the space specified by the maxExtent parameter.
- fitExtents
- Pointer to an array of integers that receives partial string extents. Each element in the array gives the distance, in logical units, between the beginning of the string and one of the characters that fits in the space specified by the maxExtent parameter. This array must have at least as many elements as character count in text. The function fills the array with valid extents for as many characters as are specified by the fitCharNumber parameter.
Return Value
Receives the dimensions of the string, in logical units.