dbGetRailDefFigType
dbGetRailDefFigType(d_railDefId) =>t_figType/ nil
Description
Returns the figType specified in the given railDef.
Arguments
Value Returned
|
Returns figType of the specified railDef. Valid values are |
|
Examples
Creates rail attributes and retrieves their figType.
; Create Rail attrs
gndRail = list(nil)
gndRail->lpp = list("gndLayer" "drawing")
gndRail->width = 0.02
gndRail->refOnArea = "topAlignment"
gndRail->refOnRail = "centerAlignment"
gndRail->netName = "gndNet"
gndRail->railFigType = "pathSeg"
;; Create RailDef and query railDef figType
rdef = dbCreateRailDefByAttr(cv "railDef" gndRail)
dbGetRailDefFigType(rdef)
Related Topics
Placement Database Access Functions
Return to top