ID
Top
Expand Minimize
This topic has not yet been rated - Rate this topic

DisplayName Property (General Extensibility)

Visual Studio .NET 2003

Returns the name used in the user interface for this output group.

[Visual Basic .NET]
Public ReadOnly Property DisplayName() As String
[Visual Basic 6]
Property Get DisplayName() As String
[C++]
HRESULT __stdcall get_DisplayName(
   /* [out, retval] */ BSTR* retVal
);
[C#]
public string DisplayName {get;}
[JScript .NET]
public function get DisplayName() : String

Remarks

Returns the name of the output group as it is displayed in the environment.

Example

Sub DisplayNameExample()
   ' Create or load a project before running this example.
   Dim OG As OutputGroup
   OG = DTE.Solution.Projects.Item(1).ConfigurationManager.ActiveConfiguration.OutputGroups.Item(1)
   MsgBox("Output group display name: " & OG.DisplayName)
   MsgBox("Output group canonical name: " & OG.CanonicalName)
End Sub

See Also

OutputGroups Property | UniqueName Property

Applies To: OutputGroup Object | VCCodeAttribute Object | VCCodeBase Object | VCCodeClass Object | VCCodeDelegate Object | VCCodeElement Object | VCCodeEnum Object | VCCodeEvent Object | VCCodeFunction Object | VCCodeIDLCoClass Object | VCCodeIDLImport Object | VCCodeIDLImportLib Object | VCCodeIDLLibrary Object | VCCodeImport Object | VCCodeInclude Object | VCCodeInterface Object | VCCodeMacro Object | VCCodeMap Object | VCCodeMapEntry Object | VCCodeNamespace Object | VCCodeParameter Object | VCCodeProperty Object | VCCodeStruct Object | VCCodeTypedef Object | VCCodeUnion Object | VCCodeUsing Object | VCCodeVariable Object

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.