HideModuleNameAttribute Class
The HideModuleNameAttribute attribute, when applied to a module, allows the module members to be accessed using only the qualification needed for the module.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
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 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.