VCCodeEvent.IsCodeType - свойство
Gets a value indicating whether a CodeType object can be obtained from this object.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
ReadOnly Property IsCodeType As Boolean
'Применение
Dim instance As VCCodeEvent
Dim value As Boolean
value = instance.IsCodeType
bool IsCodeType { get; }
property bool IsCodeType {
bool get ();
}
function get IsCodeType () : boolean
Значение свойства
Тип: System.Boolean
true if a CodeType object can be obtained; otherwise, false.
Заметки
IsCodeType returns whether the code element is a code type. If it is, then you can query interface (QI) or cast it to a CodeType object. This is true when Kind is vsCMElementClass, vsCMElementInterface, vsCMElementDelegate, vsCMElementStruct, or vsCMElementEnum.
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.
См. также
Основные понятия
How to: Compile and Run the Automation Object Model Code Examples