OLE.Client.property
property (DataWindow object)
Description
Settings that some OLE server applications use to identify the
client’s information. The property values can be used to construct the
title of the server window.
Applies to
DataWindows
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.OLE.Client.property |
Describe and Modify argument:
|
1 |
"DataWindow.OLE.Client.property { = ' value ' }" |
|
Parameter |
Description |
|---|---|
|
property |
An OLE client property, as shown in the table |
|
value |
Values for the properties are shown in the table |
|
Property for OLE.Client |
Value |
|---|---|
|
Class |
The client class for the DataWindow. The default is |
|
Name |
The client name for the DataWindow. The default is |
Usage
In the painter
Select the control and set the value in the Properties view,
Definition tab.
Examples
|
1 2 3 4 |
ls_data = dw1.Object.DataWindow.OLE.Client.Class dw1.Object.DataWindow.OLE.Client.Class = "PB" ls_data = dw1.Describe("DataWindow.OLE.Client.Class") dw1.Modify("DataWindow.OLE.Client.Class = 'PB'") |