Description
Gets or sets the per-batch eye offset, which is applied to each marker in the batch. The array contains the components of the eye offset in the order x, y, z.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property EyeOffset() As System.Array
|
| [C#] |
|---|
public System.Array EyeOffset {get; set;}
|
| [Managed C++] |
|---|
public: __property System::Array get_EyeOffset(); public: __property void set_EyeOffset(
System::Array
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_EyeOffset(
SAFEARRAY * * ppRetVal
);
public: HRESULT put_EyeOffset(
SAFEARRAY * EyeOffset
);
|
| [Java] |
|---|
public AgSafeArray getEyeOffset();
public void setEyeOffset(
AgSafeArray
);
|
[Python - STK API ] |
|---|
@property
def EyeOffset(self) -> list:
@EyeOffset.setter
def EyeOffset(self, EyeOffset:list) -> None:
|
Remarks
See Also
Example
Shows the format of the marker batch's EyeOffset property.
| [C#] |
|---|
Array eyeoffset = new object[]
{
2,
3,
4
};
markerBatch.EyeOffset = eyeoffset;
|
|
Shows the format of the marker batch's EyeOffset property.
| [Visual Basic .NET] |
|---|
Dim eyeoffset As Array = New Object() {2, 3, 4}
markerBatch.EyeOffset = eyeoffset
|
|