Type | Description | |||
Obj as Variant |
A Variant expression that could be one of the following:
to be shown or hidden. For instance, if the ObjectsLT property is "Command1,Command2", the obj parameter could be "Command1" or "Command2" | |||
Visible as Boolean | A Boolean expression that specifies whether the component requires to be shown (True) or hidden (False). |
The /COM version may use one of the following to show / hide the object:
The /NET version shows or hides the objects:
private void Show(object sender,object Obj,bool Visible) { } Private Sub Show(ByVal sender As System.Object,ByVal Obj As Object,ByVal Visible As Boolean) Handles Show End Sub |
private void Show(object sender, AxEXSPLITBARLib._ISplitBarEvents_ShowEvent e) { } void OnShow(VARIANT Obj,BOOL Visible) { } void __fastcall Show(TObject *Sender,Variant Obj,VARIANT_BOOL Visible) { } procedure Show(ASender: TObject; Obj : OleVariant;Visible : WordBool); begin end; procedure Show(sender: System.Object; e: AxEXSPLITBARLib._ISplitBarEvents_ShowEvent); begin end; begin event Show(any Obj,boolean Visible) end event Show Private Sub Show(ByVal sender As System.Object, ByVal e As AxEXSPLITBARLib._ISplitBarEvents_ShowEvent) Handles Show End Sub Private Sub Show(ByVal Obj As Variant,ByVal Visible As Boolean) End Sub Private Sub Show(ByVal Obj As Variant,ByVal Visible As Boolean) End Sub LPARAMETERS Obj,Visible PROCEDURE OnShow(oSplitBar,Obj,Visible) RETURN |
<SCRIPT EVENT="Show(Obj,Visible)" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function Show(Obj,Visible) End Function </SCRIPT> Procedure OnComShow Variant llObj Boolean llVisible Forward Send OnComShow llObj llVisible End_Procedure METHOD OCX_Show(Obj,Visible) CLASS MainDialog RETURN NIL void onEvent_Show(COMVariant _Obj,boolean _Visible) { } function Show as v (Obj as A,Visible as L) end function function nativeObject_Show(Obj,Visible) return |