NewProperty
Creates a new property as specified and returns the new IPropertyObject.
- ptNumber = 0
- ptColor = 1
- ptText = 2
- ptMemo = 3
- ptCheckBox = 4
- ptPath = 5
- ptImage = 6
- ptLargeImage = 7
- ptType = 8
- ptScript = 9
- ptFile = 10
- ptLargeFile = 11
- ptFileName = 12
- ptConnectionString = 13
- ptSlider = 14
- ptDimension = 15
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;
prop: IPropertyObject;
begin
// Create Planswift Interface
ps := coPlanswift.Create;
// Get the Estimating Tab
est := ps.GetItem('Job\Takeoff');
// Create a New Area item
itm := est.NewItem('Area', 'NewProperty Example');
// Create a new Property Named "My Custom Property"
prop := itm.NewProperty('My Custom Property', 'Sample Formula', ptText);
// Add Property to the "API Properties" Group
prop.Group := 'API Properties';
// Show the Properties dialog box
itm.Edit(true);
// Free Planswift
ps := nil;
end; |
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 |
---|
|
|