AddToLibraryList – PB Docs 2019
AddToLibraryList PowerScript function Description Adds new files to the library search path of an application or component at runtime. Syntax
|
1 |
AddToLibraryList ( filelist ) |
Argument Description filelist A comma-separated list of file names. Specify the full file name with its extension. If you do not specify a path, PowerBuilder uses the system’s search path to find the file….
ADORelease – PB Docs 2019
ADORelease database parameter Description Specifies the version of the ADO.NET data provider that is in use on the client workstation. When to specify ADORelease You must specify a value for ADORelease before connecting to the database. Applies to ADO.NET Syntax
|
1 |
ADORelease='value' |
Parameter Description value Specifies the version of an ADO.NET data provider your application uses….
AddItemObject – PB Docs 2019
AddItemObject PowerScript function Description Adds a child item of JsonObjectItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemObject ( ParentItemHandle ) |
|
1 |
objectname.AddItemObject ( ParentItemHandle, Key ) |
|
1 |
objectname.AddItemObject ( ParentItemPath ) |
|
1 |
objectname.AddItemObject ( ParentItemPath, Key ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
ADOResultSet object – PB Docs 2019
ADOResultSet object The ADOResultSet object provides the ability to use ActiveX Data Object (ADO) record sets to return a result set to a client and to manipulate ADO Recordsets in PowerBuilder. Properties ADOResultSet property Datatype Description ClassDefinition PowerObject An object of type PowerObject containing information about the class definition of the object or control Events…
AddCategory – PB Docs 2019
AddCategory PowerScript function Description Adds a new category to the category axis of a graph. AddCategory is for a category axis whose datatype is string. Applies to Graph controls in windows and user objects. Does not apply to graphs within DataWindow objects because their data comes directly from the DataWindow. Syntax
|
1 |
controlname.AddCategory ( categoryname ) |
Argument Description controlname…
AddItemDate – PB Docs 2019
AddItemDate PowerScript function Description Adds a child item of JsonStringItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemDate ( ParentItemHandle, Value ) |
|
1 |
objectname.AddItemDate ( ParentItemHandle, Key, Value ) |
|
1 |
objectname.AddItemDate ( ParentItemPath, Value ) |
|
1 |
objectname.AddItemDate ( ParentItemPath, Key, Value ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
About VPATs – PB Docs 2019
About VPATs A Voluntary Product Accessibility Template (VPAT) is a table designed to help U.S. Federal officials make preliminary assessments of accessibility compliance for products offered to the government for sale. A VPAT lists the criteria for compliance with accessibility requirements for various types of products and provides columns where you can indicate and comment…
AddItemNull – PB Docs 2019
AddItemNull PowerScript function Description Adds a child item of JsonNullItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemNull ( ParentItemHandle ) |
|
1 |
objectname.AddItemNull ( ParentItemHandle, Key ) |
|
1 |
objectname.AddItemNull ( ParentItemPath ) |
|
1 |
objectname.AddItemNull ( ParentItemPath, Key ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
AddItemNumber – PB Docs 2019
AddItemNumber PowerScript function Description Adds a child item of JsonNumberItem type in the JSON generator object. Applies to JSONGenerator objects Syntax
|
1 |
objectname.AddItemNumber ( ParentItemHandle, Value ) |
|
1 |
objectname.AddItemNumber ( ParentItemHandle, Key, Value ) |
|
1 |
objectname.AddItemNumber ( ParentItemHandle, Type ) |
|
1 |
objectname.AddItemNumber ( ParentItemHandle, Key, Type ) |
|
1 |
objectname.AddItemNumber ( ParentItemPath, Value ) |
|
1 |
objectname.AddItemNumber ( ParentItemPath, Key, Value ) |
|
1 |
objectname.AddItemNumber ( ParentItemPath, Type ) |
|
1 |
objectname.AddItemNumber ( ParentItemPath, Key, Type ) |
Argument Description objectname The name of the JSONGenerator object in which you want to add an item ParentItemHandle A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem…
About TreeView controls – PB Docs 2019
About TreeView controls TreeView controls provide a way to represent hierarchical relationships within a list. The TreeView provides a standard interface for expanding and collapsing branches of a hierarchy: When to use a TreeView You use TreeViews in windows and custom visual user objects. Choose a TreeView instead of a ListBox or ListView when your…