Description
The distance to offset the box (forward or backward) along the bearing. A positive LengthOffset value moves the box forward. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property LengthOffset() As Double
|
[C#] |
---|
public double LengthOffset {get; set;}
|
[Managed C++] |
---|
public: __property double get_LengthOffset(); public: __property void set_LengthOffset(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_LengthOffset(
double * pVal
);
public: HRESULT put_LengthOffset(
double LengthOffset
);
|
[Java] |
---|
public double getLengthOffset();
public void setLengthOffset(
double
);
|
[Python - STK API] |
---|
@property
def LengthOffset(self) -> float:
@LengthOffset.setter
def LengthOffset(self, LengthOffset:float) -> None:
|
See Also