다음을 통해 공유


VCCodeIDLLibrary.BodyText 속성

개체의 본문 텍스트를 가져오거나 설정합니다.

네임스페이스:  Microsoft.VisualStudio.VCCodeModel
어셈블리:  Microsoft.VisualStudio.VCCodeModel(Microsoft.VisualStudio.VCCodeModel.dll)

구문

‘선언
Property BodyText As String
string BodyText { get; set; }
property String^ BodyText {
    String^ get ();
    void set (String^ value);
}
abstract BodyText : string with get, set
function get BodyText () : String 
function set BodyText (value : String)

속성 값

형식: String
개체의 본문 텍스트입니다.

설명

선언 중괄호 사이 텍스트를 본문 텍스트 정의 (' {' 및 '}') 부모 개체로 표시 되는 코드 요소입니다.

이 샘플을 컴파일하고 실행하는 방법을 보려면 방법: Visual C++ 코드 모델 확장성에 대한 예제 코드 컴파일을 참조하십시오.

예제

Imports EnvDTE
Imports System.Diagnostics
Imports VisualStudio.VCCodeModel

Public Module MyMacro

  ' Adds a function to MyClass.
    Sub AddFunctionCode()
        Dim cm As VCCodeModel
        cm = DTE.Solution.Item(1).CodeModel
        Dim cl As VCCodeClass
        cl = cm.Classes.Item("MyClass")
        Dim strBody As String
        strBody = "return 0;"
        Dim func1 As VCCodeFunction
        func1 = cl.AddFunction("MyFunction", vsCMFunction.vsCMFunctionFunction, "int")
        ' Sets the property BodyText to strBody.
        func1.BodyText = strBody
    End Sub

End Module

.NET Framework 보안

참고 항목

참조

VCCodeIDLLibrary 인터페이스

Microsoft.VisualStudio.VCCodeModel 네임스페이스