HideModuleNameAttribute Class
Assembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple:=False, Inherited:=False)> _ Public NotInheritable Class HideModuleNameAttribute Inherits Attribute 'Usage Dim instance As HideModuleNameAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=false) */ public final class HideModuleNameAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false, Inherited=false) public final class HideModuleNameAttribute extends Attribute
For more detailed information, see the Visual Basic topic HideModuleNameAttribute Class.
This attribute is useful for exposing module members without showing the module itself. When using IntelliSense in the Visual Studio Integrated Development Environment (IDE) for Visual Basic, the module does not show in the statement completion list. Instead, IntelliSense shows the module members.
Even when the module name is hidden, the module members are still accessible through the module.
If a member name conflicts with another identifier or with a member of another module with the HideModuleNameAttribute attribute, then the member does not show in IntelliSense at the level of the module.
This example shows how to use the HideModuleNameAttribute attribute to add a Database object to My, which can be accessed through My.Database.
Namespace My <HideModuleName()> Module CustomMyDatabase Public ReadOnly Property Database() As MyDatabase Get Return databaseValue End Get End Property Private ReadOnly databaseValue As MyDatabase = New MyDatabase End Module End Namespace Class MyDatabase ' The members of the My.Database object go here. End Class
The Namespace statement must appear outside of any classes or modules.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.