Visual Lisp - Check data type

Is there a generally accepted method for confirming data types in lisp? Specifically I want to check if the point type is a variant or not:

(if (= ptIns ?is a variant?)
  (vlax-put-property myMText 'InsertionPoint ptIns)
  (vlax-put-property myMText 'InsertionPoint (vlax-3d-point ptIns))
)

Comments

This discussion has been closed.