Hey Rob,
The Graphics.MeasureString() returns a SizeF object.
Ref:
http://msdn.microsoft.com/library/en...tringTopic.asp
Hope this helps...
Raj Prakash
"Rob T" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Thanks Jay and Daniel....I knew it had to be something fairly simple...I
> was searching for something related to "size"...not "measure"
>
>
> "Rob T" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Is there a way to determine what the size of a GDI+ string output would
>> be prior to drawing?
>>
>> For example, If I have something like this:
>> Dim fnt As New Font("Times", 12)
>> Dim drawFormat As New StringFormat
>> drawFormat.LineAlignment = StringAlignment.Center
>> drawFormat.Alignment = StringAlignment.Center
>> g.DrawString("ABC", fnt, New SolidBrush(color.black), X1, Y1, drawFormat)
>>
>> This would draw ABC horizontally & vertically centered the X1,Y1 point.
>> The problem is that is may be drawn off the edge of the screen,
>> especially if it were a long string. It would be great to know what the
>> rectangular size is prior to drawing.
>>
>> Thanks!
>>
>
>