8 references to MeasureString
System.Drawing.Common (6)
System\Drawing\Graphics.cs (6)
1763/// <inheritdoc cref="MeasureString(string?, Font, SizeF, StringFormat?)"/> 1827/// <inheritdoc cref="MeasureString(string?, Font, SizeF, StringFormat?)"/> 1837/// <inheritdoc cref="MeasureString(string?, Font, SizeF, StringFormat?)"/> 1838public SizeF MeasureString(string? text, Font font, SizeF layoutArea) => MeasureString(text, font, layoutArea, null); 1856/// <inheritdoc cref="MeasureString(string?, Font, SizeF, StringFormat?)"/> 1907MeasureString(text, font, new SizeF(width, 999999), format);
System.Windows.Forms (2)
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.LayoutOptions.cs (1)
671screen.Graphics.MeasureString(Text, Font, new SizeF(proposedSize.Width, proposedSize.Height),
System\Windows\Forms\Controls\Labels\Label.cs (1)
1086requiredSize = Size.Ceiling(screen.Graphics.MeasureString(Text, Font, bounds, stringFormat));