ArcFM Desktop Developer Guide
Visible Property (IMMPxControl)


Version: 10.2.1b and 10.2.1b SP1

Resource Center Home

Returns a true/false value indicating whether the form is visible.
Syntax
'Declaration
 
<DispIdAttribute(1610678278)>
Property Visible As Boolean
'Usage
 
Dim instance As IMMPxControl
Dim value As Boolean
 
instance.Visible = value
 
value = instance.Visible
[DispId(1610678278)]
bool Visible {get; set;}

Property Value

Boolean
Example
The following code sample demonstrates how the IMMPxControl::Visible property may be implemented.
Visual Basic Copy Code

Private Property Let IMMPxControl_Visible(ByVal RHS As Boolean)

If Not m_pFormUI Is Nothing Then

m_pFormUI.Visible = RHS

End If

End Property

Private Property Get IMMPxControl_Visible() As Boolean

    If Not m_pFormUI Is Nothing Then
        IMMPxControl_Visible = m_pFormUI.Visible
    End If

End Property

Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

IMMPxControl Interface
IMMPxControl Members

 

 


Send Comment