VCFile.FileType - свойство
Gets or sets the type of file.
Пространство имен: Microsoft.VisualStudio.VCProjectEngine
Сборка: Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)
Синтаксис
'Декларация
Property FileType As eFileType
'Применение
Dim instance As VCFile
Dim value As eFileType
value = instance.FileType
instance.FileType = value
eFileType FileType { get; set; }
property eFileType FileType {
eFileType get ();
void set (eFileType value);
}
function get FileType () : eFileType
function set FileType (value : eFileType)
Значение свойства
Тип: Microsoft.VisualStudio.VCProjectEngine.eFileType
A eFileType value.
Заметки
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
Примеры
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim file As VCFile
Dim col As IVCCollection
Dim idx As Integer
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
col = prj.Files
For idx = 1 To col.Count
file = col.Item(idx)
MsgBox("File type: " & file.FileType.ToString)
Next
End Sub
End Module
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.