Procedures - SetPoint
Text:
API Call:Sets the digitizer point specified by PointIndex to the given X, Y coordinates.
Syntax:
Procedure
: SetPoint(PointIndex:
Integer
; X, Y:
Double
);
API Calls
Delphi
Code Block |
---|
language | delphi |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
collapse | true |
---|
|
var
ps: IPlanSwift;
est: IItem;
itm: IItem;
sect: IItem;
pt: IPoint;
begin
// Create Planswift Interface
ps := coPlanswift.Create;
// Get the Estimating tab
est := ps.GetItem('Job\Takeoff');
// Create a new Item
itm := est.NewItem('Area', 'DoRecord Example');
// Create a new Section
sect := itm.NewSection('DoRecord Section');
// Add 4 points to section to create a box
sect.NewPoint(0, 0);
sect.NewPoint(100, 0);
sect.NewPoint(100, 100);
sect.NewPoint(0, 100);
// Show a message that the box has been drawn
ShowMessage('Box Drawn');
// Get the 4th point
pt := sect.GetPoint(3);
// Set the point 100 px lower on y axis
sect.SetPoint(3, pt.X, pt.Y + 100);
// Show that the point has been moved
ShowMessage('Point 4 has been Moved');
// Free planswift
ps := nil; |
Code Block |
---|
language | delphi |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
C#
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
language | c# |
---|
theme | RDark |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
VB/VBA (OLE)
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using IItem Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
language | vb |
---|
firstline | 1 |
---|
title | Using PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|
Pascal Scripting (OLE)
Code Block |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
title | Root Object Model |
---|
linenumbers | true |
---|
|
|
Pascal Scripting
Code Block |
---|
firstline | 1 |
---|
title | Item Object Model |
---|
linenumbers | true |
---|
|
|
Code Block |
---|
title | Using the PlanSwift Object Model |
---|
linenumbers | true |
---|
|
|