ConfigurationManager.ConfigurationRowNames Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an array of all defined configuration names for the project or project item.
public:
property System::Object ^ ConfigurationRowNames { System::Object ^ get(); };
public:
property Platform::Object ^ ConfigurationRowNames { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(7)]
public object ConfigurationRowNames { [System.Runtime.InteropServices.DispId(7)] get; }
[<System.Runtime.InteropServices.DispId(7)>]
[<get: System.Runtime.InteropServices.DispId(7)>]
member this.ConfigurationRowNames : obj
Public ReadOnly Property ConfigurationRowNames As Object
Property Value
An array of all defined configuration names for the project or project item.
- Attributes
Examples
public void CodeExample(DTE2 dte, AddIn addin)
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example.
try
{
ConfigurationManager configmgr;
Array arrayCRN;
if (dte.Solution.Projects.Count > 0)
{
configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;
// Show all defined configuration names for the parent
// object of this Configuration Manager.
arrayCRN = (Array)configmgr.ConfigurationRowNames;
string cfnames = "Configuration Row Names: \n";
foreach (string n in arrayCRN)
cfnames = cfnames + n + "\n";
MessageBox.Show(cfnames);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}