VCCodeStruct.IsCaseSensitive - свойство
Gets a value indicating if a code element is case-sensitive.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
ReadOnly Property IsCaseSensitive As Boolean
'Применение
Dim instance As VCCodeStruct
Dim value As Boolean
value = instance.IsCaseSensitive
bool IsCaseSensitive { get; }
property bool IsCaseSensitive {
bool get ();
}
function get IsCaseSensitive () : boolean
Значение свойства
Тип: System.Boolean
true if a code element is case-sensitive; otherwise, false.
Заметки
See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.
Примеры
This example iterates through all global VCCodeElement objects in a file and displays the name of case-sensitive objects.
Sub CaseSensitiveObjects()
Dim vcCM As VCCodeModel
Dim vcCodeElement As VCCodeElement
vcCM = DTE.Solution.Item(1).CodeModel
For Each vcCodeElement In vcCM.CodeElements
If (vcCodeElement.IsCaseSensitive) Then
MsgBox(vcCodeElement.Name + " is case-sensitive.")
End If
Next
End Sub
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.