Jump to content
Software FX Community

Re: ShowBalloon Font


Software FX

Recommended Posts

To change the leter size of the Balloon object through the AnnBalloon object

in the Annotation extension you can use this code:

Dim r As AnnBalloon

Set r = AnnotX.Add(OBJECT_TYPE_BALLOON)

r.Width = 100

r.Height = 50

r.Top = 50

r.Left = 50

r.Text = "Balloon Object"

r.Refresh False

r.Font.Size = 13

Regards,

Percy Dyer

Software FX, Inc. Tech Support

Please reply to: Cfx98@softwarefx.com

========================================

"Steve Schreiner (VBLogic, Inc.)" <steve@vblogic.com> wrote in message

news:vLZFFXmSAHA.1424@sfxserver.softwarefx.com...

> Actually there is a ShowBalloon method for the chart that can be called

> through code. When calling this method, my text appears small and I was

not

> sure how to change the size...

>

> "SteveT" <stephent@compassadv.com> wrote in message

> news:OIKZZJmSAHA.1424@sfxserver.softwarefx.com...

> Is this what you mean?

>

> 'add text object to AnnotX and set options

> Set objBalloon = AnnotX.Add(OBJECT_TYPE_BALLOON)

> With objBalloon

> .Text = "Hi, Mom!" & " "

> .Font.Size = 14

> .Width = 60

> .Height = -35 'pointer lower left corner

> .Top = 100

> .Left = 150

> .Refresh False

> End With

>

> Steve

>

> Steve Schreiner (VBLogic, Inc.) <steve@vblogic.com> wrote in message

> news:LK#AJHgSAHA.1428@sfxserver.softwarefx.com...

> > How can I change the size or font of the text that is displayed in the

> show

> > balloon method?

> >

> > Thanks.

> >

> >

>

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...