Description
Specify the minimum distance from the viewer reference point at which the track point is visible. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PointFrom() As Double
|
[C#] |
---|
public double PointFrom {get; set;}
|
[Managed C++] |
---|
public: __property double get_PointFrom(); public: __property void set_PointFrom(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PointFrom(
double * pVal
);
public: HRESULT put_PointFrom(
double PointFrom
);
|
[Java] |
---|
public double getPointFrom();
public void setPointFrom(
double
);
|
[Python - STK API] |
---|
@property
def PointFrom(self) -> float:
@PointFrom.setter
def PointFrom(self, PointFrom:float) -> None:
|
See Also