To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.

Procedures - Delete Property - FD

Procedures - Delete Property

Deletes PropertyName from ItemPath.

Syntax:

Function: DeleteProperty(ItemPath, PropertyName: String): Boolean;

API Calls

Delphi

Using IItem Object Model
var  
ps: IPlanSwift;
  itm: IItem;
  prop: IPropertyObject;
  i: Integer;
 
begin
  // Create Planswift Interface
  ps := coPlanswift.Create;
  // Get the Selected Item Parent
  itm := ps.SelectedItem.ParentItem;
  // Loop through all properties and delete
  for i := itm.PropertyCount - 1 downto 0 do
  begin
    // Get Property at index i
    prop := itm.PropertyItem[i];
    // delete the property
    itm.deleteProperty(prop.Name)
  end;
  // Show the property dialog box
  itm.Edit(true);
  // Free Planswift
  ps := nil;
Using PlanSwift Object Model
 

C#

Using IItem Object Model
 
Using PlanSwift Object Model
 

VB/VBA (OLE)

Using IItem Object Model
 
Using PlanSwift Object Model
 

Pascal Scripting (OLE)

Item Object Model
 
Root Object Model
 

Pascal Scripting

Item Object Model
 
Using the PlanSwift Object Model
 

Copyright 2023 ConstructConnect