Metoda CodeClass2.RemoveMember —
Usuwa członkiem tej klasy.
Przestrzeń nazw: EnvDTE80
Zestaw: EnvDTE80 (w EnvDTE80.dll)
Składnia
'Deklaracja
Sub RemoveMember ( _
Element As Object _
)
void RemoveMember(
Object Element
)
void RemoveMember(
Object^ Element
)
abstract RemoveMember :
Element:Object -> unit
function RemoveMember(
Element : Object
)
Parametry
Element
Typ: ObjectWymagany.A CodeElement obiektu lub nazwa jednej w kolekcji.
Uwagi
Usunięto element może być albo CodeElement obiekt, który znajduje się w kolekcji lub nazwa unikatowa elementu w kolekcji.
[!UWAGA]
Wartości elementów modelu kodu, takich jak klasy, strukturach, funkcje, atrybuty, delegatów i tak dalej mogą być deterministyczny po dokonaniu niektórych rodzajów modyfikacji, co oznacza, że ich wartości nie mogą być powoływane do zawsze pozostają takie same.Aby uzyskać więcej informacji, zobacz sekcję wartości elementu modelu kod można zmienić w Odnajdowanie kodu za pomocą modelu kodu (Visual Basic).
Przykłady
[Visual Basic]
Sub RemoveMemberExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a class method.
Try
' Retrieve the CodeFunction at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim fun As CodeFunction = CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementFunction), CodeFunction)
Dim cls As CodeClass = CType(fun.Parent, CodeClass)
If MsgBox("Remove " & fun.Name & " from " & cls.Name & "?", _
MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
cls.RemoveMember(fun)
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
[C#]
public void RemoveMemberExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a class method.
try
{
// Retrieve the CodeFunction at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeFunction fun =
(CodeFunction)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementFunction);
CodeClass cls = (CodeClass)fun.Parent;
if (MessageBox.Show("Remove " + fun.Name + " from " +
cls.Name + "?", "", MessageBoxButtons.YesNo) ==
DialogResult.Yes)
cls.RemoveMember(fun);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.
Zobacz też
Informacje
Inne zasoby
Porady: kompilowanie i uruchamianie kodu modelu obiektów automatyzacji — przykłady