action=

action=(action_name) Instance Public methods

setuid

Process::Sys.setuid(user) â nil Class Public methods Set the user ID of the current process to user. Not available on all platforms.

isopen?

isopen?() Instance Public methods Alias for: isopen

latin_current_configinfo

latin_current_configinfo(slot=nil) Instance Public methods

ppx

ppx(prefix, *objs) Instance Public methods Same as pp, except it concatenates the given prefix with the prefix given during object initialization. See IRB::OutputMethod#ppx for more detail.

firstChild

firstChild() Instance Public methods IXMLDOMNode firstChild first child of the node

each_pair

struct.each_pair {|sym, obj| block } â structstruct.each_pair â an_enumerator Instance Public methods Calls block once for each instance variable, passing the name (as a symbol) and the value as parameters. If no block is given, an enumerator is returned instead. Customer = Struct.new(:name, :address, :zip) joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345) joe.each_pair {|name, value| puts("#{name} => #{value}") } produces: name =>

floor_fg1

floor_fg1(w,color) Instance Public methods #floor_fg1 â This method represents part of the floorplan database. When invoked, it instantiates the foreground information for the first floor (office outlines and numbers). Arguments: w - The canvas window. color - Color to use for drawing foreground information.

is_ancestor

is_ancestor(des) Instance Public methods Alias for: isancestor

have_type

have_type(type, headers = nil, opt = "", &b) Instance Public methods Returns whether or not the static type type is defined. You may optionally pass additional headers to check against in addition to the common header files. You may also pass additional flags to opt which are then passed along to the compiler. If found, a macro is passed as a preprocessor constant to the compiler using the type name, in uppercase, prepended with HAVE_TYPE_. For example, if have_type('foo') ret