dbIsInRowRegion
dbIsInRowRegion( d_FigId ) => t / nil
Description
Checks if a figure with the given figure database ID belongs to a rowRegion.
Arguments
Value Returned
Examples
Returns t because the figure belongs to the row region.
; Create a rowRegion and obtain all the placeRows in the rowRegion.
RR = dbCreateRowRegion(cv2 "RR" "RRS" point)
placerow = car(dbGetRowRegionPlaceRows(RR))
;; Query that the placeRow belongs to a rowRegion.
dbIsInRowRegion(placeRow)
Related Topics
Placement Database Access Functions
Return to top