This example shows how to determine if an object is a Section Edge (type 199).
ENTITY/objectNUMBER/selmsk(5), objtyp, resp$$crsmod = &VWCURS&VWCURS = &ANY$$$$ set selection masks for Section Edge (type 199)selmsk(1) = 3selmsk(2) = 5selmsk(3) = 6selmsk(4) = 9selmsk(5) = 199MASK/selmsk$$start:$$ select objectIDENT/'Select Section Edge', object, respIF/resp <= 2, JUMP/finish:$$$$ test if true object type is a Section Edge (type 199)objtyp = &ISSXED(object, IFERR, errdo:)IF/objtyp == 199, JUMP/proc:$$MESSG/'Did not select a Section Edge.'JUMP/start:$$errdo:MESSG/'Selection error.'JUMP/start:$$$$ process the Section Edgeproc:..JUMP/start:$$finish:&VWCURS = crsmodHALT