Description
Gets or sets the near plane associated with the 
Projection.
Property type
Read-write property
Syntax
| [Visual Basic .NET] | 
|---|
Public Property NearPlane() As Double 
  | 
| [C#] | 
|---|
public double NearPlane {get; set;}
  | 
| [Managed C++] | 
|---|
public: __property double get_NearPlane(); public: __property void set_NearPlane(
    double
); 
  | 
| [Unmanaged C++] | 
|---|
public: HRESULT get_NearPlane(
    double * pRetVal
);
public: HRESULT put_NearPlane(
    double NearPlane
);
  | 
| [Java] | 
|---|
public double getNearPlane();
public void setNearPlane(
    double
);
  | 
[Python - STK API  ] | 
|---|
@property
def NearPlane(self) -> float:
@NearPlane.setter
def NearPlane(self, NearPlane:float) -> None: 
  | 
See Also