helpButton1

helpButton1(w, x, y) Instance Public methods

new

new(parent, index, keys) Class Public methods

shellescape

shellescape(str) Class Public methods Escapes a string so that it can be safely used in a Bourne shell command line. str can be a non-string object that responds to to_s. Note that a resulted string should be used unquoted and is not intended for use in double quotes nor in single quotes. argv = Shellwords.escape("It's better to give than to receive") argv #=> "It\\'s\\ better\\ to\\ give\\ than\\ to\\ receive" String#shellescape is a shorthand for this function. argv = "It's

windowpath

windowpath(idx) Instance Public methods

sign

pkey.sign(digest, data) â String Instance Public methods To sign the String data, digest, an instance of OpenSSL::Digest, must be provided. The return value is again a String containing the signature. A PKeyError is raised should errors occur. Any previous state of the Digest instance is irrelevant to the signature outcome, the digest instance is reset to its initial state during the operation. Example data = 'Sign me!' digest = OpenSSL::Digest::SHA256.new pkey = OpenSSL::PKey::RS

sysread

ssl.sysread(length) => stringssl.sysread(length, buffer) => buffer Instance Public methods Reads length bytes from the SSL connection. If a pre-allocated buffer is provided the data will be written into it.

insert

insert(idx, subwin, keys=nil) Instance Public methods

covector

covector() Instance Public methods Creates a single-row matrix from this vector.

createAttribute

createAttribute(arg0) Instance Public methods IXMLDOMAttribute createAttribute create an attribute node BSTR arg0 --- name [IN]

to_i

time.to_i â int Instance Public methods Returns the value of time as an integer number of seconds since the Epoch. t = Time.now "%10.5f" % t.to_f #=> "1270968656.89607" t.to_i #=> 1270968656