FileCodeModel2.Remove 메서드
소스 파일에서 지정된 코드 요소를 제거합니다.
네임스페이스: EnvDTE80
어셈블리: EnvDTE80(EnvDTE80.dll)
구문
‘선언
Sub Remove ( _
Element As Object _
)
void Remove(
Object Element
)
void Remove(
Object^ Element
)
abstract Remove :
Element:Object -> unit
function Remove(
Element : Object
)
매개 변수
Element
형식: Object필수입니다. 소스 코드에서 제거할 코드 요소의 이름이나 CodeElement 개체입니다.
설명
Element는 컬렉션의 CodeElement 개체이거나 컬렉션의 고유한 요소 이름일 수 있습니다.
개별 요소는 여러 컬렉션에 존재할 수 있으므로 개별 요소에는 Remove 메서드가 없습니다. 특정 요소를 제거하려면 해당하는 컨테이너 개체의 Remove 메서드를 호출해야 합니다.
예제
Sub RemoveExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a function.
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)
If MsgBox("Remove " & fun.Name & "?", MsgBoxStyle.YesNo) = _
MsgBoxResult.Yes Then
' Remove the function.
fun.ProjectItem.FileCodeModel.Remove(fun)
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.