ctime

time.ctime â string Instance Public methods Returns a canonical string representation of time. Time.now.asctime #=> "Wed Apr 9 08:56:03 2003"

noutrefresh

noutrefresh() Instance Public methods Refreshes the windows and lines. #noutrefresh allows multiple updates with more efficiency than #refresh alone.

nodeTypedValue=

nodeTypedValue=(arg0) Instance Public methods VOID nodeTypedValue get the strongly typed value of the node

sample

sample(ip, parent) Instance Public methods ãµã³ãã«ã®ããã®ã¦ã£ã¸ã§ãããçæãã.

configinfo

configinfo(key=nil) Instance Public methods def configure(key, val=None) if key.kind_of?(Hash) tk_call @t.path, 'tag', 'configure', @id, *hash_kv(key) else tk_call @t.path, 'tag', 'configure', @id, "-#{key}", val end end def configure(key, value) if value == FALSE value = "0" elsif value.kind_of?(Proc) value = install_cmd(value) end tk_call @t.path, 'tag', 'configure', @id, "-#{key}", value end

charset=

charset=(arg0) Instance Public methods HRESULT charset get encoding. BSTR arg0 --- p [IN]

width

width(win) Class Public methods

bbox

bbox(tagOrId, *tags) Instance Public methods

visible?

WIN32OLE_METHOD#visible? Instance Public methods Returns true if the method is public. tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbooks') method = WIN32OLE_METHOD.new(tobj, 'Add') puts method.visible? # => true

unix

unix(path) Class Public methods creates a new socket connected to path using UNIX socket socket. If a block is given, the block is called with the socket. The value of the block is returned. The socket is closed when this method returns. If no block is given, the socket is returned. # talk to /tmp/sock socket. Socket.unix("/tmp/sock") {|sock| t = Thread.new { IO.copy_stream(sock, STDOUT) } IO.copy_stream(STDIN, sock) t.join }