Window.PostInit Method (Typed) | |
Implement customized initialization code for the window.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD PostInit() AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual PostInit()
Request Example
View SourceReturn Value
Type:
UsualRemarks
This method is used to customize the initialization code for a window.
The customized initialization code will not be overridden by the Window Editor's default initialization code.
A call to PostInit() is automatically generated at the end of the Init() method.
You can customize the code generation by changing the [PostInitCall] and [PostInit] sections
in your CAVOWED.TPL file. Note that PreInit() is always called prior to PostInit().
The default implementation of PostInit() in this class is empty.
See Also