| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Runtime VIEW and FILE Properties >====== PROP:SupportsType ====== | [[prop supportsop.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop text.htm|{{btn_next_n.gif|Next page}}]] | | || Property of a FILE that returns whether the specified data type is supported by the file driver. Returns 1 if the data type is supported and 0 if it is not. Valid data types supported by this property are the DataType:xxxx found in EQUATES.CLW. (READ ONLY) **Example:** **Customer FILE,DRIVER('Clarion')** **Record    RECORD** **Id        LONG** **         . .** **Supported BYTE** **    CODE** **    Supported = Customer{****PROP:SupportsType****,DriverOp:CREATE} ! Returns 1** **    Supported = Customer{****PROP:SupportsType****,DriverOp:NULL}   ! Returns 0** **    Supported = Customer{****PROP:SupportsType****,DataType:LONG}   ! Returns 1** **    Supported = Customer{****PROP:SupportsType****,DataType:DATE}   ! Returns 0**