Visit Gigasoft's Web Site
 ProEssentials v10 Help

MultiBottomTitles

Scope

Pego, Pesgo, Pe3do, Pepso, Pepco

Type

Property Array of type String

Default

empty

.NET

PeString.MultiBottomTitles

Ocx|Vcl

MultiBottomTitles

DLL

MultiBottomTitles

 

Purpose

This property array can be used to add up to 10 bottom subtitles. Each subtitle has a left, centered, and right justified component delimited with the pipe character "|". Each string in the tab delimited array should be less than or equal to 250 characters in length. Note the pipe delimiter can be redefined with the Delimiter property.

 

Comments

PeString.MultiBottomTitles members of Pego.PeString, Pesgo.PeString, Pe3do.PeString, Pepso.PeString, Pepco.PeString

 

Within the demo see example 011.

 

See Also: MultiSubTitles, SubTitleFont, AllowBottomTitleHotSpots

 

OCX Example

* adding various MultiBottomTitles *

PEGraph1.MultiBottomTitles(0) = "Left|Centered|Right"

PEGraph1.MultiBottomTitles(1) = "|Centered Only|"

PEGraph1.MultiBottomTitles(2) = "||Right Only"

PEGraph1.MultiBottomTitles(3) = "Left Only||"

 

VCL Example

{* adding various MultiBottomTitles *}

PEGraph1.MultiBottomTitles[0] := 'Left|Centered|Right';

PEGraph1.MultiBottomTitles[1] := '|Centered Only|';

PEGraph1.MultiBottomTitles[2] := '||Right Only';

PEGraph1.MultiBottomTitles[3] := 'Left Only||';

 

C / C++ Example

/* add 2 multi bottom titles */

char szSubTitles[] = "Left|Centered|Right\t|Centered Only|\t";

PEvset (hWndPE, PEP_szaMULTIBOTTOMTITLES, szSubTitles, 2);