|
|
Visits:
2439
(24 on line)
|
Last Update: Dec 21, 2003
|
|
|
|
| | |
| Description Inheritance Example Properties Methods |
| |
| Description |
The TCueCard5 Object is used to display one or 2 Help panels in your application.
It is useful whenever you need to display no more than a couple of screen full of Help
and don't need to create a real .HLP or .CHM external Help File. |
| Description Inheritance Example Properties Methods |
| |
| Inheritance |
Inherits from: TForm5 TObject5 |
| Description Inheritance Example Properties Methods |
| |
| Example |
| |
 |
| |
The above form is generated by the following APL+Win Objects code: |
aaa„'This is a small Help panel that you may display'
aaa„aaa,Œtcnl,'at any time from your APL application.'
aaa„aaa,Œtcnl,Œtcnl,'It may contain one or two explanation screens.'
aaa„aaa,Œtcnl,Œtcnl,'You may choose the buttons to display in the'
aaa„aaa,Œtcnl,'Help panel.'
aaa„aaa,Œtcnl,Œtcnl,'Also, this help panel stays on top of your'
aaa„aaa,Œtcnl,'other application Windows.'
aaa„aaa,Œtcnl,Œtcnl,'Click on the > button for additional help.'
bbb„'The TCueCard5 object display a first level of help'
bbb„bbb,Œtcnl,'and can point to a more complete Help file.'
bbb„bbb,Œtcnl,Œtcnl,'Just click on the Help button to access'
bbb„bbb,Œtcnl,'this additional Help file.'
'ff'Œwi'*Create' 'TCueCard5'('cuecard1'aaa)('wherelc' '<>' '<>' '°' '°')
'ff'Œwi'cuecard2'bbb
'ff'Œwi'*Set'('helpbutton'1)('morebutton'1)('closebutton'1)('helpfile' 'c:\aplwin36\aplgui.hlp')
'ff'Œwi'Show'
Œerase'aaa bbb'
|
| |
| Description Inheritance Example Properties Methods |
| |
| Properties |
| |
|
| class |
Description: Return current object class
Syntax: class„'obj' Œwi 'class' |
| closebutton |
Description: Indicate if CueCard has a Close button or not
Syntax: 'obj' Œwi 'close'boolean |
| cuecard1 |
Description: Get or Set the first CueCard help text
Syntax: 'obj' Œwi 'cuecard1'helptext
helptext: a ŒTCNL delimited character string |
| cuecard2 |
Description: Get or Set the second CueCard help text
Syntax: 'obj' Œwi 'cuecard2'helptext
helptext: a ŒTCNL delimited character string |
| font1 |
Description: Get or Set font for first help screen
Syntax: 'obj' Œwi 'font1'fontname {fontsize}{bold}
fontname: a Windows font name
fontsize: a font size in points
bold: 1=bold 0=normal |
| font2 |
Description: Get or Set font for second help screen
Syntax: 'obj' Œwi 'font2'fontname {fontsize}{bold}
fontname: a Windows font name
fontsize: a font size in points
bold: 1=bold 0=normal |
| help |
Example:
aaa„'This is a small Help panel that you may display'
aaa„aaa,Œtcnl,'at any time from your APL application.'
aaa„aaa,Œtcnl,Œtcnl,'It may contain one or two explanation screens.'
aaa„aaa,Œtcnl,Œtcnl,'You may choose the buttons to display in the'
aaa„aaa,Œtcnl,'Help panel.'
aaa„aaa,Œtcnl,Œtcnl,'Also, this help panel stays on top of your'
aaa„aaa,Œtcnl,'other application Windows.'
aaa„aaa,Œtcnl,Œtcnl,'Click on the > button for additional help.'
bbb„'The TCueCard5 object display a first level of help'
bbb„bbb,Œtcnl,'and can point to a more complete Help file.'
bbb„bbb,Œtcnl,Œtcnl,'Just click on the Help button to access'
bbb„bbb,Œtcnl,'this additional Help file.'
0 0½'ff' Œwi '*Create' 'TCueCard5' ('cuecard1'aaa) ('wherelc' '<>' '<>' '°' '°')
'ff' Œwi 'cuecard2'bbb
'ff' Œwi '*Set' ('helpbutton'1) ('morebutton'1) ('closebutton'1) ('helpfile' 'c:\aplwin36\aplgui.hlp')
'ff' Œwi 'Show'
Œerase'aaa bbb' |
| helpbutton |
Description: Indicate if CueCard has a Help button or not
Syntax: 'obj' Œwi 'help'boolean |
| helpfile |
Description: Get or Set the complete DOS help file name
Syntax: 'obj' Œwi 'helpfile'filename
filename: a complete DOS file name |
| morebutton |
Description: Indicate if CueCard has a More button or not
Syntax: 'obj' Œwi 'morebutton'boolean |
|
| Description Inheritance Example Properties Methods |
| |
| Methods |
| |
|
| New |
Description: Create a new instance of TCueCard5
Example:
'obj' Œwi '*Create' 'TCueCard5'
|
| TopRight |
Description: Moves the CueCard panel to the top right of the screen |
|
| Description Inheritance Example Properties Methods |
| |
|