Description
Gets or sets the reference point of the camera. The array contains the components of the reference point arranged in the order x, y, z.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property ReferencePoint() As System.Array
|
| [C#] |
|---|
public System.Array ReferencePoint {get; set;}
|
| [Managed C++] |
|---|
public: __property System::Array get_ReferencePoint(); public: __property void set_ReferencePoint(
System::Array
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_ReferencePoint(
SAFEARRAY * * ppRetVal
);
public: HRESULT put_ReferencePoint(
SAFEARRAY * ReferencePoint
);
|
| [Java] |
|---|
public AgSafeArray getReferencePoint();
public void setReferencePoint(
AgSafeArray
);
|
[Python - STK API ] |
|---|
@property
def ReferencePoint(self) -> list:
@ReferencePoint.setter
def ReferencePoint(self, ReferencePoint:list) -> None:
|
See Also
Example
Shows the format of the Camera's ReferencePoint property.
| [C#] |
|---|
Array point = new object[]
{
31378.1,
0,
0
};
scene.Camera.ReferencePoint = point;
|
|
Shows the format of the Camera's ReferencePoint property.
| [Visual Basic .NET] |
|---|
Dim point As Array = New Object() {31378.1, 0, 0}
scene.Camera.ReferencePoint = point
|
|