Description
Reference point used for calculation.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ReferencePoint() As String
|
[C#] |
---|
public string ReferencePoint {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_ReferencePoint(); public: __property void set_ReferencePoint(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ReferencePoint(
BSTR * pRetVal
);
public: HRESULT put_ReferencePoint(
BSTR InVal
);
|
[Java] |
---|
public String getReferencePoint();
public void setReferencePoint(
String
);
|
[Python - STK API] |
---|
@property
def ReferencePoint(self) -> str:
@ReferencePoint.setter
def ReferencePoint(self, InVal:str) -> None:
|
See Also