INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Set and get the double-click time for the mouse. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_DOUBLE_CLICK
feature -- Status report

double_click_time: INTEGER
-- Current double-click time for the mouse (in milliseconds)
ensure
positive_result: Result > 0
feature -- Status setting

set_double_click_time (time: INTEGER)
-- Set `double_click_time' with `time' (in milliseconds).
require
positive_time: time > 0
ensure
double_click_time_set: double_click_time = time
end -- class WEL_DOUBLE_CLICK

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES