VCCodeIDLLibrary.IsCaseSensitive Property

Gets a value indicating whether a code element is case-sensitive.

Namespace:  Microsoft.VisualStudio.VCCodeModel
Assembly:  Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)

Syntax

'Declaration
ReadOnly Property IsCaseSensitive As Boolean
bool IsCaseSensitive { get; }
property bool IsCaseSensitive {
    bool get ();
}
abstract IsCaseSensitive : bool with get
function get IsCaseSensitive () : boolean

Property Value

Type: System.Boolean
true of a code element is case-sensitive; otherwise, false.

Remarks

See How to: Compile Example Code for Visual C++ Code Model Extensibility for information on how to compile and run this sample.

Examples

This example iterates through all global VCCodeElement objects in a file and displays the name of those objects that are case-sensitive.

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

.NET Framework Security

See Also

Reference

VCCodeIDLLibrary Interface

Microsoft.VisualStudio.VCCodeModel Namespace