ShellWindow.OnOleStatusMessage Method | |
Provide a handler routine called with an OLE object's status message.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD OnOleStatusMessage(
cMsgString
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual OnOleStatusMessage(
Usual cMsgString = default
)
Request Example
View SourceParameters
- cMsgString (Optional)
- Type: Usual
The status string to be displayed.
Return Value
Type:
UsualRemarks
ShellWindow:OnOLEStatusMessage() is called whenever an in-place active OLE object's menu is browsed by the user. The default implementation displays the status string inside the shell window's status bar.
It should never be necessary to call this method directly. Instead, you can write your own OnOLEStatusMessage() method for derived classed if you want to change the default implementation.
See Also