Description
True if the origin is at the reference satellite, false if the origin is at the current satellite.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property OriginAtMaster() As Boolean
|
[C#] |
---|
public bool OriginAtMaster {get; set;}
|
[Managed C++] |
---|
public: __property bool get_OriginAtMaster(); public: __property void set_OriginAtMaster(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_OriginAtMaster(
VARIANT_BOOL * pVal
);
public: HRESULT put_OriginAtMaster(
VARIANT_BOOL InVal
);
|
[Java] |
---|
public bool getOriginAtMaster();
public void setOriginAtMaster(
bool
);
|
[Python - STK API] |
---|
@property
def OriginAtMaster(self) -> bool:
@OriginAtMaster.setter
def OriginAtMaster(self, InVal:bool) -> None:
|
See Also