DisplayName Property (General Extensibility)
Returns the name used in the user interface for this output group.
Public ReadOnly Property DisplayName() As String
Property Get DisplayName() As String
HRESULT __stdcall get_DisplayName( /* [out, retval] */ BSTR* retVal );
public string DisplayName {get;}
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