indexing description: "Control interfaces. Help file: " Note: "Automatically generated by the EiffelCOM Wizard." deferred class IVIEW_OBJECT2_INTERFACE inherit IVIEW_OBJECT_INTERFACE feature -- Status Report get_extent_user_precondition (dw_draw_aspect: INTEGER; lindex: INTEGER; ptd: TAG_DVTARGETDEVICE_RECORD; lpsizel: TAG_SIZEL_RECORD): BOOLEAN is -- User-defined preconditions for `get_extent'. -- Redefine in descendants if needed. do Result := True end feature -- Basic Operations get_extent (dw_draw_aspect: INTEGER; lindex: INTEGER; ptd: TAG_DVTARGETDEVICE_RECORD; lpsizel: TAG_SIZEL_RECORD) is -- No description available. -- `dw_draw_aspect' [in]. -- `lindex' [in]. -- `ptd' [in]. -- `lpsizel' [out]. require non_void_ptd: ptd /= Void valid_ptd: ptd.item /= default_pointer non_void_lpsizel: lpsizel /= Void valid_lpsizel: lpsizel.item /= default_pointer get_extent_user_precondition: get_extent_user_precondition (dw_draw_aspect, lindex, ptd, lpsizel) deferred end end -- IVIEW_OBJECT2_INTERFACE