InkColor – PB Docs 2017
InkColor property for PowerScript controls Applies to InkEdit, InkPicture controls Description A drawing attribute that specifies the current ink color. The default color is black. Usage In a painter To specify a color for the ink drawn in an InkEdit or InkPicture control: Select a color from the InkColor drop-down list on the Ink page…
HProgressBar control – PB Docs 2017
HProgressBar control You can use a progress bar to indicate the progress of a lengthy operation, such as an installation program that copies a large number of files. The HProgressBar control is a horizontal rectangle that fills with the system highlight color as the operation progresses. Properties HProgressBar property Datatype Description AccessibleDescription String A description…
HTTPClient object – PB Docs 2017
HTTPClient object The HTTPClient object is a base object for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. Compared to the Inet object, the HTTPClient object is easier to use and supports more methods (Get/Post/Put/Delete) and more SSL protocols (TLS 1.0, TLS 1.1, TLS 1.2, SSL 2.0, and SSL…
Error object – PB Docs 2017
Error object The Error object is used to record execution-time errors. You can access the Error object from a script (typically in the SystemError event) to learn which error occurred and where it occurred. You can also customize your own version of the Error object by defining a class user object inherited from the built-in…
grAxis object – PB Docs 2017
grAxis object The PowerBuilder class grAxis is used as part of a graph control. Each graph has three grAxis objects: Category, Series, and Values. To refer to a property of an axis, use this syntax:
|
1 |
graphcontrolname.axisname.property |
For example:
|
1 |
gr_1.Series.AutoScale |
A grAxis object has no events. Properties grAxis property Datatype Description AutoScale Boolean Specifies whether PowerBuilder…
Category – PB Docs 2017
Category property for PowerScript controls Applies to Graph controls Description The Category property of the Graph control allows you to specify the properties of the category axis of the graph. The category axis is an object (of the type grAxis) within the Graph control. Usage In a painter To set the properties of the Category…
BackColor – PB Docs 2017
BackColor property for PowerScript controls Applies to Windows and most controls Description The BackColor property defines the color to be used for the background of an object. When you are defining the background color in a painter, some of the choices take their values from the current Windows color scheme or from custom colors. To…
AuthenticateParms – PB Docs 2017
AuthenticateParms property for PowerScript controls Applies to MLSync and SyncParm objects Description Specifies a comma-separated list of authentication parameters for the remote database connection to the MobiLink synchronization server. If you set the AuthenticateParms property on an MLSync object, or if you call SetParm after setting the AuthenticateParms property on a SyncParm object, PowerBuilder inserts a…
DisplayEveryNLabels – PB Docs 2017
DisplayEveryNLabels property for PowerScript controls Applies to grAxis objects of Graph controls Description DisplayEveryNLabels is a property of the grAxis objects that can be part of graph controls. There are three grAxis objects: Category, Series, and Values. This property specifies which major divisions to label on the selected axis in the graph. For example, a…
DataWindow control – PB Docs 2017
DataWindow control You place DataWindow controls in a window or user object and then specify the DataWindow object you want to use within them to display and manipulate data in the window. A DataWindow object allows users to display, manipulate, and update database or other information. You build DataWindow objects in the DataWindow painter. For…