IFuncInfo::RawName Property

 

Gets or sets the name of the function as a raw string.

Namespace:   Microsoft.VisualStudio.VsWizard
Assembly:  Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)

property String^ RawName {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name of the function as a raw string.

var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strRawName = oFunction.RawName;
Return to top
Show: