从用户控件内部检查自我可见性

时间:2018-06-28 20:34:16

标签: vb6 user-controls visibility

如何自检用户控件的可见性?

没有UserControl.visible或类似的属性。

1 个答案:

答案 0 :(得分:1)

您需要将userControl强制转换为VBControlExtender

Dim oVBControlExtender As VBControlExtender
Set oVBControlExtender = UserControl.Extender
If oVBControlExtender.Visible = True Then
'Code Here
EndIf