Click or drag to resize

Window.PostInit Method

X#
Implement customized initialization code for the window.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD PostInit() AS USUAL
Request Example View Source

Return Value

Type: Usual
Remarks
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