CodeClass2.IsShared Property

Definition

Gets or sets the shared (static) status of the class.

public:
 property bool IsShared { bool get(); void set(bool value); };
public:
 property bool IsShared { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(210)]
public bool IsShared { [System.Runtime.InteropServices.DispId(210)] get; [System.Runtime.InteropServices.DispId(210)] set; }
[<System.Runtime.InteropServices.DispId(210)>]
[<get: System.Runtime.InteropServices.DispId(210)>]
[<set: System.Runtime.InteropServices.DispId(210)>]
member this.IsShared : bool with get, set
Public Property IsShared As Boolean

Property Value

true if the class is shared (not static), otherwise false.


The values of code model elements such as classes, structs, functions, attributes, delegates, and so forth can be non-deterministic after making certain kinds of edits, meaning that their values cannot be relied upon to always remain the same. For more information, see the section Code Model Element Values Can Change in Discovering Code by Using the Code Model (Visual Basic).

Attributes

Examples

[Visual Basic]

Sub IsSharedExample(ByVal dte As DTE2)  
    ' Before running this example, open a code document from a project  
    ' and place the insertion point inside a class definition.  
    Try  
        ' Retrieve the CodeClass at the insertion point.  
        Dim sel As TextSelection = _  
           CType(dte.ActiveDocument.Selection, TextSelection)  
        Dim cls As CodeClass2 = _  
            CType(sel.ActivePoint.CodeElement( _  
            vsCMElement.vsCMElementClass), CodeClass2)  

        ' Display whether or not the class is shared.  
        If cls.IsShared Then  
            MsgBox("Class is shared")  
        Else  
            MsgBox("Class is not shared")  
        End If  

    Catch ex As System.Exception  
        MsgBox(ex.ToString)  
    End Try  
End Sub  

[C#]

public void IsSharedExample(DTE2 dte)  
{  
    // Before running this example, open a code document from a project  
    // and place the insertion point inside a class definition.  
    try  
    {  
        // Retrieve the CodeClass at the insertion point.  
        TextSelection sel = (TextSelection)   
        dte.ActiveDocument.Selection;  
        CodeClass2 cls = (CodeClass2)   
        sel.ActivePoint.get_CodeElement(vsCMElement.vsCMElementClass);  

        // Display whether or not the class is shared.  
        if (cls.IsShared)  
        {  
            MessageBox.Show("Class is shared");  
        }  
        else  
        {  
            MessageBox.Show("Class is not shared");  
        }  
    }  
    catch(System.Exception ex)  
    {  
        MessageBox.Show(ex.Message);  
    }  
}  

Applies to