Jump to content
Software FX Community

Title: Line Break?


User (Legacy)

Recommended Posts

Hi Brian,

Yes you can.....like this for example: ChartFX1.Title(CHART_TOPTIT) = "Chart Title" & vbCrLf & "(Chart SubTitle)"

or in complete code:

Private Sub Form_Load()

Dim strText As String

strText = "Chart Title" & vbCrLf & "(Chart SubTitle)"

With ChartFX1

.Title(CHART_TOPTIT) = strText

End With

End Sub

Good luck, Arnoud

"B Squared" <bbeaudet@b2webapps.com> wrote in message news:uz5vkHXwBHA.1412@webserver1.softwarefx.com...

> Is it possible to create a two line title?

>

> For instance:

>

> Chart Title

> (Chart SubTitle)

>

> Brian Beaudet

>

>

Link to comment
Share on other sites

Perfect.  Thanks.

"Arnoud Kettenis" <arnoudk@hetnet.nl> wrote in message news:gb6P6bjwBHA.1412@webserver1.softwarefx.com...

Hi Brian,

Yes you can.....like this for example: ChartFX1.Title(CHART_TOPTIT) = "Chart Title" & vbCrLf & "(Chart SubTitle)"

or in complete code:

Private Sub Form_Load()

Dim strText As String

strText = "Chart Title" & vbCrLf & "(Chart SubTitle)"

With ChartFX1

.Title(CHART_TOPTIT) = strText

End With

End Sub

Good luck, Arnoud

"B Squared" <bbeaudet@b2webapps.com> wrote in message news:uz5vkHXwBHA.1412@webserver1.softwarefx.com...

> Is it possible to create a two line title?

>

> For instance:

>

> Chart Title

> (Chart SubTitle)

>

> Brian Beaudet

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...