Coordinate Constructor (Boolean, Boolean, Int32, Int32) | 
 
            Initializes a new instance of the 
Coordinate class.
            
 
    Namespace: 
   ProScript
    Assembly:
   proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntaxpublic Coordinate(
	bool penDown,
	bool dataSource,
	int x,
	int y
)
Public Sub New ( 
	penDown As Boolean,
	dataSource As Boolean,
	x As Integer,
	y As Integer
)
public:
Coordinate(
	bool penDown, 
	bool dataSource, 
	int x, 
	int y
)
new : 
        penDown : bool * 
        dataSource : bool * 
        x : int * 
        y : int -> CoordinateParameters
- penDown
 - Type: SystemBoolean
is the pen down - dataSource
 - Type: SystemBoolean
is this a data source - x
 - Type: SystemInt32
x coordinate - y
 - Type: SystemInt32
y coordinate 
See Also