Version

CalculateTextSize(ParsedFormattedTextValue,Graphics,Font,AppearanceData,Boolean,Size) Method

Calculates the size of a single line text string for use by an ImageAndFormattedTextUIElement
Syntax
'Declaration
 
Public Overloads Shared Function CalculateTextSize( _
   ByVal text As ParsedFormattedTextValue, _
   ByVal g As Graphics, _
   ByVal font As Font, _
   ByRef appearance As AppearanceData, _
   ByVal wrapText As Boolean, _
   ByVal layoutArea As Size _
) As Size
public static Size CalculateTextSize( 
   ParsedFormattedTextValue text,
   Graphics g,
   Font font,
   ref AppearanceData appearance,
   bool wrapText,
   Size layoutArea
)

Parameters

text
ParsedFormattedTextValue to measure.
g
Graphics object used to calculate the text size
font
Base font used to calculate the text size
appearance
Resolved appearance data structure for obtaining the font information for the element.
wrapText
True if text can be wrapped
layoutArea
The constraining area for the text.

Return Value

The size required by the text.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also