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