DataBrowser Constructor (Typed) | |
Construct a data browser.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oOwner AS Window,
xID AS LONG,
oPoint AS Point,
oDimension AS Dimension
)
public DataBrowser(
[DefaultParameterValueAttribute(null, 0)] Window oOwner,
[DefaultParameterValueAttribute(1000, 0)] int xID,
[DefaultParameterValueAttribute(null, 0)] Point oPoint,
[DefaultParameterValueAttribute(null, 0)] Dimension oDimension
)
Request Example
View SourceParameters
- oOwner
- Type: Window
The window that owns the data browser. - xID
- Type: Long
The unique ID of the data browser (between 1 and 8000). - oPoint
- Type: Point
The origin of the data browser in canvas coordinates. If not specified, (0,0) is used. - oDimension
- Type: Dimension
The dimension of the data browser in canvas coordinates. If not specified, the size of oOwner is used.
Remarks
When the owner window is a DataWindow object, the data browser occupies the full size of the data window frame window and changes size as the data window size changes.
See Also