Control.Expose Method (Typed) | |
Provide a method that is invoked when the control has focus and whenever part of the window needs repainting.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Expose(
oExposeEvent AS ExposeEvent
) AS VOID
public virtual void Expose(
ExposeEvent oExposeEvent
)
Request Example
View SourceParameters
- oExposeEvent
- Type: ExposeEvent
The ExposeEvent object that describes which control of the window needs repainting.
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
This is one of the most important event handlers. A control requires repainting when the control:
- Is partially uncovered by another window
- Is first shown
- Increases in size
- Is being restored after being iconized
- The control should retain enough information to redraw the screen as it was (or as it should be).
An ExposeEvent is also triggered by calling Repaint() or Update(); you should not call Repaint() or Update() during the Expose().
See Also