Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.
[...] runtime rather than being compiled. The syntax of the language is modeled closely after JavaScript and C#. General Concepts Script execution begins on the first line. Script statements end with a semi-colon. (;) If an error occurs during execution the script execution will be halted. Case Sensitivity The scripting language is case-insensitive including keywords and identifiers. White Space White space is ignored between operators and operands. White space characters are space, carriage return, line feed, [...]
[...] ("EULA") is a legal agreement between you (either an individual or a single entity), (the "User"), and John Hughes, the licensor of LumenLink ("Licensor"). This EULA permits you to use a single copy, or multiples copies of the software product identified above, which includes computer software and may include associated media, printed materials, and on-line or electronic documentation (the "Software"). By installing, copying, or otherwise using the Software, you agree to be bounded by the terms of this EULA. [...]
[...] ("EULA") is a legal agreement between you (either an individual or a single entity), (the "User"), and John Hughes, the licensor of ViziaRFLibrary ("Licensor"). This EULA permits you to use a single copy, or multiples copies of the software product identified above, which includes computer software and may include associated media, printed materials, and on-line or electronic documentation (the "Software"). By installing, copying, or otherwise using the Software, you agree to be bounded by the terms of this [...]
Represents an instant in time, typically expressed as a date and time of day. Constructors DateTime ( ) Initializes a new DateTime instance to the current date and time. Syntax: DateTime ( ) Example:
dt = new DateTime( );
DateTime ( DateTime value ) Initializes a new DateTime instance to the specified value. Syntax: DateTime( DateTime value ) Parameters: value: A DateTime . Example:
dt1 = new DateTime();
dt2 = new DateTime( dt1 );
// is equivalent to
dt2 = dt1;
DateTime ( Number , Number , Number ) [...]
[...] compatible software application for Windows that can auto-discover your Z-Wave network, show node status and export metadata to Elk Product ElkRP application. Prerequisites Microsoft Windows 98, Windows Me, Windows 2000, XP, Vista, Windows 7, or newer. Microsoft.NET 2.0 Framework Leviton ViziaRF RZC0P/VRC0P Serial Interface Module In order to receive on the fly node level changes, you must associate all devices/nodes with the RZC0P. This is done via the System Setup -> Advanced-> HAI Setup menu in the Vizia RF Primary Remote. See the RZC0P or VRC0P instructions [...]
[...] data source. This allows for a variety of data sources to be used such as MySql, Sql Server, Oracle and many more. Connection String The connection string is an ODBC provider connection string that includes the data source name, and other parameters needed to establish the initial connection. You can find a variety of ODBC connection string examples at connectionstrings.com . Example Connection Strings MySql Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=mydbname; [...]
[...] a variety of data sources to be used such as MS Access, Sql Server, Oracle, Excel file, text files and many more. Use the ODBCConnection object to connect to a MySql database. Connection String The connection string is an OLE DB provider connection string that includes the data source name, and other parameters needed to establish the initial connection. You can find a variety of OLE DB connection string examples at connectionstrings.com . Example Connection Strings MS Access Standard Security Provider=Microsoft.Jet.OLEDB.4.0;Data [...]
[...] Methods GetFieldString ( Number, String ) Retrieves a value from the DataTable at the specified row and column as a String. Syntax: String GetFieldString ( Number rowNumber, String columnName ) Parameters: rowNumber: The row number. columnName: The name of the column. Return Value The value at the specified row and column as a String. Example:
dt = db.GetDataTable("select * from mytable");
s = dt.GetFieldString(0, "col1");
GetFieldString ( Number, String, String ) Retrieves a value from the DataTable at the specified [...]
[...] all the nodes in the Z-Wave network.
// This will populate the underlying _viziaRf.Nodes collection and would normally be done on a separate thread.
_viziaRf.RequestAllNodes();
// Instead of polling the nodes can be saved or read from a file using:
_viziaRf.SaveToFile(filePath);
ViziaRF _viziaRf = LoadFromFile(filePath);
// After discovering all the nodes in the Z-Wave network you will likely want to poll all the current
// current levels of all nodes. This is only necessary when the software is first run since the nodes should
// all be associated with [...]
[...] occurrence of the specified String in this instance. The search starts at a specified character position and examines a specified number of character positions. Syntax: Number IndexOf ( String sought, Number startIndex, Number count) Parameters: sought: The String to seek. startIndex: The search starting position. count: The number of character positions to examine. Return Value The index position of sought if that String is found, or -1 if it is not. If value is Empty, the return value is startIndex . Example:
s = "abc";
i = s.IndexOf("abc", 0, [...]
[...] Can I rename my Vizia RF devices? Yes, just double click the name in the grid (or press the F2 key) and enter a new one. Why do my primary controller (node 1) and RZC0P not show a name? During the beta it was consistent that the Vizia RF primary controller and the Vizia RF RZC0P would not respond to a node name request. It is unknown why, but to speed up the retrieval of node levels, the application no long automatically tries to retrieve node 1's name. You can manually request the node name from the Node menu. [...]
[...] for common file system operations. This object can not be instantiated in a script.
Accessing files and directories is done under the context of the user that the application or service is running under. This can cause some file permissions/access rights issues if the file does not allow access to that user.
Static Methods CopyFile ( String, String ) Copies an existing file to a new one. Syntax: void CopyFile ( String sourceFilePath, String destFilePath ) Parameters: sourceFilePath: The path of the file to copy. destFilePath: The destination file path. [...]
Provides constants and static methods for logarithmic, and other common mathematical functions. This object can not be instantiated in a script. Static Properties E Gets the constant that represents the natural logarithmic base, specified by the constant, e = 2.7182818284590452354. Type: Number Example:
result = Math.E * 10;
PI Gets the constant that represents the ratio of the circumference of a circle to its diameter, specified by the constant, π = 3.14159265358979323846. Type: Number Example:
result = Math.PI * 10;
Static [...]
Represents an immutable regular expression. Constructors RegEx( String ) Initializes and compiles a new instance of the RegEx class for the specified regular expression. Syntax: RegEx( String pattern ) Parameters: pattern: The regular expression pattern to match. Example:
r = new RegEx(@"(a|b|r)+");
RegEx( String, String ) Initializes and [...]
[...] Software , 64KB Change History Version 1.3 Updated the serial communication when setting node names and when receiving node names based on feedback from Leviton. Version 1.2 The broadcast on and [...]
[...] ranging in value from -1.79769313486231570E+308 through -4.94065645841246544E-324 for negative values and from 4.94065645841246544E-324 through 1.79769313486231570E+308 for positive values. Constructors Number ( ) Initializes a new Number instance with a value of 0 (zero). This has the same affect as using a numeric literal with a value of zero. Syntax: Number() Example:
i = new Number( ); // results in 0
// is equivalent to
i = 0;
Number ( Number ) Initializes a new Number instance to the specified number value. Syntax: Number( Number value ) Parameters: [...]
[...] use the new community forum HERE . The J9 Automation Engine forum is now used for archival reference and is no longer accepting new user registrations. Existing users accounts have been transferred to the new forum. You will need to request a new password and [...]
[...] to clear the value of a variable, so that there is no longer any data associated with that variable, and the memory used by it is freed. When a variable [...]
Version 1.0 Please use the forum for support and feedback. Download Software , 22KB
[...] TextFileReader.OpenText("c:\myfiles\names.txt");
Instance Methods
ReadLine Reads a line of characters from the current file and returns the data as a string. Syntax: String [...]
Facilitates writing to a standard text file.
Accessing files and directories is done under the context of the [...]
[...] value. void is not allowed in a method's parameter list. An example method that takes no parameters and returns no value is declared as follows: [...]