VCProjectEngine.IsSystemInclude 方法
如果指定的檔案是在 Vc7\include 目錄中,或者如果此檔案是使用 sysincl.dat 指定的其中一個目錄,則傳回 true。
命名空間: Microsoft.VisualStudio.VCProjectEngine
組件: Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
語法
'宣告
Function IsSystemInclude ( _
Include As String _
) As Boolean
bool IsSystemInclude(
string Include
)
bool IsSystemInclude(
[InAttribute] String^ Include
)
abstract IsSystemInclude :
Include:string -> bool
function IsSystemInclude(
Include : String
) : boolean
參數
- Include
型別:System.String
必要項。想要檢查的檔案名稱。您必須提供檔案的完整路徑。
傳回值
型別:System.Boolean
如果檔案是系統檔案,則為 true,否則為 false。
範例
請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。
下列範例會修改IsSystemInclude在整合式的開發環境 (IDE) 中的屬性:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim cfgs As IVCCollection
Dim cfg As VCConfiguration
Dim ProjEng As VCProjectEngine
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
ProjEng = cfgs.VCProjectEngine
MsgBox(ProjEng.IsSystemInclude("C:\Program Files\Microsoft _
Visual Studio .NET 2003\Vc7\PlatformSDK\Include\windows.h"))
End Sub
End Module
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。