更新 : 2007 年 11 月
メンバ コード構成を削除します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
Sub RemoveMember ( _
Element As Object _
)
'使用
Dim instance As CodeClass
Dim Element As Object
instance.RemoveMember(Element)
void RemoveMember(
Object Element
)
void RemoveMember(
Object^ Element
)
function RemoveMember(
Element : Object
)
パラメータ
Element
型 : System.Object必ず指定します。コレクション内の CodeElement オブジェクトまたはコレクション内の要素の名前。
解説
削除する要素には、コレクション内の CodeElement オブジェクトを指定することも、コレクション内の一意の要素の名前を指定することもできます。
![]() |
---|
特定の種類の編集を行うと、クラス、構造体、関数、属性、デリゲートなどのコード モデル要素が非確定的な値になる場合があります。つまり、これらの要素の値は、常に同じ値になるとは限りません。詳細については、「コード モデルを使用したコードの調査 (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
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);
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
その他の技術情報
方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する