ask_if_ok

ask_if_ok(spec) Instance Public methods

set_password

set_password(v) Instance Protected methods protected setter for the password component v see also #password=

primary_key

primary_key() Class Public methods

ole_func_methods

WIN32OLE#ole_func_methods Instance Public methods Returns the array of WIN32OLE_METHOD object . The element of the array is property (settable) of WIN32OLE object. excel = WIN32OLE.new('Excel.Application') properties = excel.ole_func_methods

==

==(other) Instance Public methods Returns true if and only if the two matrices contain equal elements.

map!

ary.map! {|item| block } â aryary.map! â Enumerator Instance Public methods Invokes the given block once for each element of self, replacing the element with the value returned by the block. See also Enumerable#collect. If no block is given, an Enumerator is returned instead. a = [ "a", "b", "c", "d" ] a.map! {|x| x + "!" } a #=> [ "a!", "b!", "c!", "d!" ]

generator_descriptions

generator_descriptions() Instance Public methods Returns a properly-space list of generators and their descriptions.

configure

configure(*args) Class Public methods def configure(win, *args) if args[-1].kind_of?(Hash) opts = args.pop else opts = {} end params = [] # params.push((win.kind_of?(TkObject))? win.epath: win) params.push(_epath(win)) args.each{|win| # params.push((win.kind_of?(TkObject))? win.epath: win) params.push(_epath(win)) } opts.each{|k, v| params.push("-#{k}") # params.push((v.kind_of?(TkObject))? v.epath: v) params.push(_epath(v)) } tk_call_without_enc("pack", 'configure',

each_index

each_index( &block ) Instance Public methods

default_system_path=

default_system_path=(path) Class Public methods Sets the #system_path that new instances of Shell should have as their initial system_path. path should be an array of directory name strings.