Syntax 4 For the symbol of a data point – PB Docs 125
Syntax 4 For the symbol of a data point Description Obtains the symbol of a data point in a graph. Controls PowerBuilder DataWindow DataWindow control DataWindow Web ActiveX DataWindow control Syntax [PowerBuilder]
1 |
integer <span>dwcontrol</span>.<span>GetDataStyle</span> ( string <span>graphcontrol</span>, integer <span>seriesnumber</span>, integer <span>datapointnumber</span>, REF grSymbolType <span>symbolvariable</span> ) |
[Web ActiveX]
1 |
number <span>dwcontrol</span>.<span>GetDataStyleSymbol</span> (string <span>graphcontrol</span>, number <span>seriesnumber</span>, number <span>datapointnumber</span> ) |
Argument Description dwcontrol A reference to the DataWindow control containing the graph. graphcontrol A string whose value is the name of the…
Syntax 2 For the line style and width used by a series – PB Docs 125
Syntax 2 For the line style and width used by a series Description Obtains the line style and width for a series in a graph. Controls PowerBuilder DataWindow DataWindow control DataWindow Web ActiveX DataWindow control Syntax [PowerBuilder]
1 |
integer <span>dwcontrol</span>.<span>GetSeriesStyle</span> ( string <span>graphcontrol</span>, string <span>seriesname</span>, REF LineStyle <span>linestyle</span> {, REF integer <span>linewidth</span> } ) |
[Web ActiveX]
1 |
number <span>dwcontrol</span>.<span>GetSeriesStyleLine</span> ( string <span>graphcontrol</span>, string <span>seriesname</span> ) |
Argument Description dwcontrol A reference to the DataWindow control containing the graph. graphcontrol A string whose value…
Syntax 3 For the fill pattern of a data point – PB Docs 125
Syntax 3 For the fill pattern of a data point Description Obtains the fill pattern of a data point in a graph. Controls PowerBuilder DataWindow DataWindow control DataWindow Web ActiveX DataWindow control Syntax [PowerBuilder]
1 |
integer <span>dwcontrol</span>.<span>GetDataStyle</span> ( string <span>graphcontrol</span>, integer <span>seriesnumber</span>, integer <span>datapointnumber</span>, REF FillPattern <span>fillvariable</span> ) |
[Web ActiveX]
1 |
number <span>dwcontrol</span>.<span>GetDataStyleFill</span> ( string <span>graphcontrol</span>, number <span>seriesnumber</span>, number <span>datapointnumber</span> ) |
Argument Description dwcontrol A reference to the DataWindow control containing the graph. graphcontrol A string whose value is the name…
Syntax 2 For the line style and width used by a data point – PB Docs 125
Syntax 2 For the line style and width used by a data point Description Obtains the line style and width for a data point in a graph. Controls PowerBuilder DataWindow DataWindow control DataWindow Web ActiveX DataWindow control Syntax [PowerBuilder]
1 |
integer <span>dwcontrol</span>.<span>GetDataStyle</span> ( string <span>graphcontrol</span>, integer <span>seriesnumber</span>, integer <span>datapointnumber</span>, REF LineStyle <span>linestyle</span>, REF integer <span>linewidth</span> ) |
[Web ActiveX]
1 |
number <span>dwcontrol</span>.<span>GetDataStyleLine</span> ( string <span>graphcontrol</span>, number <span>seriesnumber</span>, number <span>datapointnumber </span> ) |
Argument Description dwcontrol A reference to the DataWindow control containing the graph. graphcontrol A string…
Syntax 2 For RichTextEdit DataWindows – PB Docs 125
Syntax 2 For RichTextEdit DataWindows Description Selects text beginning and ending at a line and character position in a RichText DataWindow. Controls DataWindow type Method applies to PowerBuilder DataWindow control Syntax [PowerBuilder]
1 |
long <span>rtedwcontrol</span>.<span>SelectText</span> ( long <span>fromline</span>, long <span>fromchar</span>, long<span> toline</span>, long <span>tochar</span> { band <span>band</span> } ) |
Argument Description rtedwcontrol A reference to the DataWindow control in which you want to select text. The DataWindow object in the DataWindow control…
Syntax 2 For lines in a graph – PB Docs 125
Syntax 2 For lines in a graph Description Specifies the style and width of a series’ lines in a graph. Controls PowerBuilder DataWindow DataWindow control DataWindow Web ActiveX DataWindow control Syntax [PowerBuilder]
1 |
integer <span>dwcontrol</span>.<span>SetSeriesStyle</span> ( string <span>graphcontrol</span>, string <span>seriesname</span>, LineStyle <span>linestyle</span> {, integer <span>linewidth</span> } ) |
[Web ActiveX]
1 |
number <span>dwcontrol</span>.<span>SetSeriesStyleLine</span> ( string <span>graphcontrol</span>, string <span>seriesname</span>, number <span>linestyle</span>, number <span>linewidth</span> ) |
Argument Description dwcontrol A reference to the DataWindow control containing the graph. graphcontrol A string whose value is the name of the…
Syntax 2 For the line associated with a data point – PB Docs 125
Syntax 2 For the line associated with a data point Description Specifies the style and width of a data point’s line in a graph. Controls PowerBuilder DataWindow DataWindow control DataWindow Web ActiveX DataWindow control Syntax [PowerBuilder]
1 |
integer <span>dwcontrol</span>.<span>SetDataStyle</span> ( string <span>graphcontrol</span>, integer <span>seriesnumber</span>, integer <span>datapointnumber</span>, LineStyle <span>linestyle</span>, { integer <span>linewidth</span> } ) |
[Web ActiveX]
1 |
number <span>dwcontrol</span>.<span>SetDataStyle</span> ( string <span>graphcontrol</span>, number <span>seriesnumber</span>, number <span>datapointnumber</span>, number <span>linestyle</span>, number <span>linewidth</span> ) |
Argument Description dwcontrol A reference to the DataWindow control containing the graph. graphcontrol A string whose value is…
Syntax 1 For DataWindow controls and child DataWindows – PB Docs 125
Syntax 1 For DataWindow controls and child DataWindows Description Scrolls a DataWindow control forward one page, displaying the next group of rows in the DataWindow’s display area. (A page is the number of rows that can be displayed in the DataWindow control at one time.) ScrollNextPage changes the current row, but not the current column. Controls…
Spacing – PB Docs 125
Spacing DataWindow object property Description The gap between categories in a graph. Controls Graph controls Syntax PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>graphname</span>.Spacing |
Describe and Modify argument:
1 |
"<span>graphname</span>.Spacing { = ' <span>integer </span>' }" |
Parameter Description graphname The name of the graph control in the DataWindow for which you want to get or set the spacing. integer (exp) An integer specifying the gap between…
String – PB Docs 125
String DataWindow expression function Description Formats data as a string according to a specified display format mask. You can convert and format date, DateTime, numeric, and time data. You can also apply a display format to a string. Syntax
1 |
<span>String</span> ( <span>data</span> {, <span>format</span> } ) |
Argument Description data The data you want returned as a string with the specified formatting….