CodeClass2.IsShared Property
Gets or sets the shared (static) status of the class.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
Property IsShared As Boolean
bool IsShared { get; set; }
property bool IsShared {
bool get ();
void set (bool value);
}
abstract IsShared : bool with get, set
function get IsShared () : boolean
function set IsShared (value : boolean)
Property Value
Type: System.Boolean
true if the class is shared (not static), otherwise false.
Note
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).
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);
}
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples