IFuncInfo.RawName Property

Definition

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

public:
 property System::String ^ RawName { System::String ^ get(); void set(System::String ^ value); };
public:
 property Platform::String ^ RawName { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(1610743820)]
public string RawName { [System.Runtime.InteropServices.DispId(1610743820)] get; [System.Runtime.InteropServices.DispId(1610743820)] [System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted)] set; }
[<System.Runtime.InteropServices.DispId(1610743820)>]
[<get: System.Runtime.InteropServices.DispId(1610743820)>]
[<set: System.Runtime.InteropServices.DispId(1610743820)>]
[<set: System.Runtime.InteropServices.TypeLibFunc(System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted)>]
member this.RawName : string with get, set
Public Property RawName As String

Property Value

The name of the function as a raw string.

Attributes

Examples

var oInterface = window.external.ParentObject;  
var oFunction = oInterface.Functions(PROPERTY_NAME.value);  
Var strRawName = oFunction.RawName;  

Applies to