isExplodable

block:isExplodable() --> booleano

Ritorna un booleano indicante se si tratta di un blocco esplodibile.

Esempio 1. Esempio isExplodable

local ss = selset.filter{ {0,"INSERT"} }
if ss and ss:count() > 0 then
  local blk = StdBlk(ss:item(0))
  if blk then
    print("\nisExplodable = " .. tostring(blk:isExplodable()))
  else
    print("\nStdBlk: nil")
  end
else
  print("\nNessun INSERT nel disegno")
end
if ss then ss:free() end

Created with the Personal Edition of HelpNDoc: Streamline Your Documentation Creation with a Help Authoring Tool