ComponentOne CalendarView for WinForms
C1.Framework.Drawing.Gdi.DeviceContexts Namespace / DeviceContext Class / TextExtentEx Method
A string for which extents are to be retrieved.
Specifies the maximum allowable width, in logical units, of the formatted string.
Receives a count of the maximum number of characters that will fit in the space specified by the maxExtent parameter.
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.

In This Topic
    TextExtentEx Method
    In This Topic
    Retrieves the number of characters in a specified string that will fit within a specified space and fills an array with the text extent for each of those characters.
    Syntax
    '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.
    See Also