Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Marshal::IsTypeVisibleFromCom Method (Type^)

 

Indicates whether a type is visible to COM clients.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

public:
static bool IsTypeVisibleFromCom(
	Type^ t
)

Parameters

t
Type: System::Type^

The type to check for COM visibility.

Return Value

Type: System::Boolean

true if the type is visible to COM; otherwise, false.

IsTypeVisibleFromCom enables you to check for COM visibility in one step. Types that are not visible cannot be used from COM. A type is visible if it is public and not hidden with the System.Runtime.InteropServices::ComVisibleAttribute.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft