VCPropertySheet.AddPropertySheet(String) Method
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.
Adds a property sheet to the collection of property sheets directly imported by a property sheet.
public:
Microsoft::VisualStudio::VCProjectEngine::VCPropertySheet ^ AddPropertySheet(System::String ^ FileName);
public:
Microsoft::VisualStudio::VCProjectEngine::VCPropertySheet ^ AddPropertySheet(Platform::String ^ FileName);
Microsoft::VisualStudio::VCProjectEngine::VCPropertySheet AddPropertySheet(std::wstring const & FileName);
[System.Runtime.InteropServices.DispId(615)]
public Microsoft.VisualStudio.VCProjectEngine.VCPropertySheet AddPropertySheet (string FileName);
[<System.Runtime.InteropServices.DispId(615)>]
abstract member AddPropertySheet : string -> Microsoft.VisualStudio.VCProjectEngine.VCPropertySheet
Public Function AddPropertySheet (FileName As String) As VCPropertySheet
Parameters
- FileName
- String
Relative to the importing property sheet, the full path or relative path of the property sheet to add. The path can contain build system macros.
Returns
The VCPropertySheet object that corresponds the property sheet that is added.
- Attributes
Remarks
The new property sheet is added last in the evaluation order of the property sheets.
For example, if you want property sheet C:\folder1\P.props to import property sheet C:\folder1\folder2\Q.props, call this method on the property sheet object corresponding to P. For the FileName
parameter, specify either "C:\folder1\folder2\Q.props" or "folder2\Q.props". In the latter case, the relative path of Q is with regard to P, and not with regard to the project directory.