Help.property
property (DataWindow object)
Description
Settings for customizing the Help topics associated with
DataWindow dialog boxes.
For more information about Help, see the section called “ShowHelp” in PowerScript Reference.
Applies to
DataWindows
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.Help.property |
Describe and Modify argument:
|
1 |
"DataWindow.Help.property { = value }" |
|
Parameter |
Description |
|---|---|
|
property |
A property for specifying DataWindow Help. Help |
|
value |
The value to be assigned to the property. For Help |
|
Property for Help |
Value |
|---|---|
|
Command |
An integer specifying the type of Help command that Values are: 0 — 1 — TopicID 2 — Search |
|
File |
A string containing the fully qualified name of the |
|
TypeID |
A string specifying the default Help command to be |
|
TypeID.ImportFile |
A string specifying the Help topic for the Import |
|
TypeID.Retrieve.Argument |
A string specifying the Help topic for the |
|
TypeID.Retrieve.Criteria |
A string specifying the Help topic for the Prompt |
|
TypeID.SaveAs |
A string specifying the Help topic for the Save As |
|
TypeID.SetCrosstab |
A string specifying the Help topic for the Crosstab |
|
TypeID.SetFilter |
A string specifying the Help topic for the Set |
|
TypeID.SetSort |
A string specifying the Help topic for the Set Sort |
|
TypeID.SetSortExpr |
A string specifying the Help topic for the Modify |
Usage
In the painter
Can be set only in code, not in the painter.
Examples
|
1 2 3 4 5 6 7 8 9 |
string setting setting = dw1.Object.DataWindow.Help.Command dw1.Object.DataWindow.Help.File = "myhelp.hlp" dw1.Object.DataWindow.Help.Command = 1 setting = dw1.Describe("DataWindow.Help.Command") dw1.Modify("DataWindow.Help.File='myhelp.hlp'") dw1.Modify("DataWindow.Help.Command=1") dw1.Modify("DataWindow.Help.TypeID.SetFilter = 'filter_topic'") dw1.Modify("DataWindow.Help.TypeID.Retrieve.Criteria = 'criteria_topic'") |