This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Thursday, August 25, 2005 9:06:38 AM(UTC)
Groups: Registered
Posts: 11
Is there any way to force the height and width of a Note annotation to
be at least a specific minimim size (e.g. 100 x 100 pixels)?
Using LEADTools Document Imaging v14 for.NET. I didn't see
anything in the AnnNoteObect definition that specified its height and
width.
#2
Posted
:
Monday, August 29, 2005 11:13:29 PM(UTC)
Groups: Registered, Tech Support
Posts: 1,326
Was thanked: 1 time(s) in 1 post(s)
Hello,
You can change (specify) the width and the height of the AnnNoteobject by changing its bounds.
For Example: The following code will draw an AnnNoteObject with width and height 50x50
=========
Dim AnnObject As AnnNoteObject
AnnObject = New AnnNoteObject
AnnObject.Bounds = New AnnRectangle(10, 10, 50, 50)
AutomationAnn.Container.Objects.Add(AnnObject)
RasterImageViewer1.Refresh()
=========
Thanks,
Maen Badwan
LEADTOOLS Technical Support
#3
Posted
:
Tuesday, August 30, 2005 8:58:10 AM(UTC)
Groups: Registered
Posts: 11
It WAS Bounds. Son of a
gun. I saw the property and went "Nahh, that can't be it."
D'oh! That's what I get for not listening to my gut. Ah,
well.
Thanks for the speedy reply! One more problem solved!
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.