CoordinateRange Constructor  | 
  
    Namespace: 
   ProScript
    Assembly:
   proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntaxpublic CoordinateRange(
	int xMin,
	int xMax,
	int yMin,
	int yMax
)
Public Sub New ( 
	xMin As Integer,
	xMax As Integer,
	yMin As Integer,
	yMax As Integer
)
public:
CoordinateRange(
	int xMin, 
	int xMax, 
	int yMin, 
	int yMax
)
new : 
        xMin : int * 
        xMax : int * 
        yMin : int * 
        yMax : int -> CoordinateRangeParameters
- xMin
 - Type: SystemInt32
the minimum x component - xMax
 - Type: SystemInt32
the maximum x component - yMin
 - Type: SystemInt32
the minimum y component - yMax
 - Type: SystemInt32
the maximum y component 
See Also