Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the body text of the function.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
Syntax
'Declaration
Property BodyText As String
Get
Set
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)
Property Value
Type: System.String
The body text of the function.
Remarks
Body text is defined as the text between the declaration braces ( '{' and '}' ) of the function.
Examples
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
var strBodyText = oFunction.BodyText;
.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.