Viewport.MinZ Property (Microsoft.DirectX.Direct3D)

Retrieves or sets the minimum value of the clip volume.

Definition

Visual Basic Public Property MinZ As Single
C# public float MinZ { get; set; }
C++ public:
property float MinZ {
        float get();
        void set(float value);
}
JScript public function get MinZ() : float
public function set MinZ(float);

Property Value

System.Single
Integer that represents the minimum z-value of the clipping volume.

This property is read/write. 

Remarks

MinZ, together with MaxZ, specifies the range of depth values into which a scene is rendered. Most applications set this value to 0.0. Clipping is performed after the projection matrix is applied.