DataWindow.Close Method (Typed) | |
Invoked just as the data window is about to close.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Close(
oEvent AS Event
) AS USUAL
public override Usual Close(
Event oEvent
)
Request Example
View SourceParameters
- oEvent
- Type: Event
An event required to maintain the protocol that all event handlers have exactly one event as their argument.
Return Value
Type:
Usual
TRUE if successful; otherwise, FALSE.
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
This method is not used to close a data window. Use DataWindow:Hide() to make a data window disappear from view,
but remain available for re-opening; use DataWindow:Destroy() to permanently destroy the data window.
See Also