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.
[...] 3;
Comments A comment, also known as a remark, can contain any information that a programmer wants to add to describe the script. The comment itself is marked with special characters so that it is completely ignored by the compiler and has no effect on the final software. Any text or code following the double slash (//) on the same line is ignored during compilation of the program. Example:
// This entire line is a comment.
x = y; // This part is the comment.
a = b; // a = c
Literals Numeric A numeric [...]
Represents text; that is, a series of characters (letters, numbers, symbols, etc). String character positions are zero base, ie. the first character in a string is at index 0. Constructors String ( ) Initializes a new String instance an empty string. ( "" ) Syntax: String() Example:
s = new String();
// is equivalant to
s = ""; String ( String ) Initializes a new String instance to the specified value. Syntax: String( String value ) Parameters: value: A String . Example:
s = new String( [...]
Facilitates writing to a standard text file.
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.
Constructors none Instance Properties none Static Methods
WriteAllText Creates a new file, writes the specified string to the file. If the target file already exists, it is overwritten. Syntax: void WriteAllText [...]
[...] 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 [...]
[...]
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 Methods
Abs( Number ) Returns the absolute value of a specified number. Syntax: Number Abs ( Number value) Parameters: value: The Number to be rounded. Return Value The absolute value of a specified number Example:
n1 = Math.Abs(22); // results in 22
n2 = Math.Abs(-22); // results in 22
Round( [...]
[...] 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 EULA. If you do not agree to the terms of this EULA, do not install or use the Software. [...]
[...] 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. If you do not agree to the terms of this EULA, do not install or use the Software. [...]
An OleDbConnection object represents an open connection to a data source (such as a database). The OleDbConnection object uses the OLE DB provider specified in the connection string to connect to the data source. This allows for 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. [...]
[...] 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 compiles a new instance of the Regex class for the specified regular expression, with options that modify the pattern. Syntax: RegEx( String pattern, String options ) Parameters: pattern: The regular expression pattern to match.
options: A bitwise OR combination of Regex Option values. 0=None, 1=Case-insensitive, 2=Multi-line, 4=Explicit [...]
[...] 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 ) Initializes a [...]
[...] 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. Example:
FileSystem.CopyFile( @"c:\oldfile.txt", @"c:\oldfile_backup.txt" );
CopyFile ( String, String, Boolean ) Copies an [...]
An OdbcConnection object represents an open connection to a data source (such as a database). The OdbcConnection object uses the ODBC provider specified in the connection string to connect to the 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 [...]
[...] download includes class documentation in an xml file. Place the xml file in the same path as the dll to turn on Visual Studio Intellisense. The documentation here intended to just get you started. Please use the forum for any questions. Here is some simple code to start things up:
ViziaRF _viziaRf = new ViziaRF();
_viziaRf.Open("COM1");
// Add a couple event handlers (there are many more).
_viziaRf.NodeLevelChanged += new EventHandler<NodeLevelChangedEventArgs>(_viziaRf_NodeLevelChanged);
_viziaRf.ReceivedSceneButtonPress [...]
[...] .NET 2.0 Framework must be installed. Leviton ViziaRF RZC0P/VRC0P Serial Interface Module connected to PC. You may require a ViziaRF primary remote to enroll the RZC0P or VRC0P. This is yet to be determined. Will non Vizia RF Z-Wave devices be discovered? Yes. Although they may not support the name class or level notification. 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? [...]
Facilitates reading from a standard text file.
Accessing files 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.
Constructors none Instance Properties EndOfFile Gets a value that indicates whether the current position is at the end of the file. Type: Boolean Example:
eof = file.EndOfStream;
Static Methods
ReadAllText Opens a file, reads all the text from [...]
[...] 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: value: A Number . Example:
i = new Number( 5.25 );
// is equivalant to
i = 5.25;
Number ( String ) Initializes a new Number instance by converting the specified string to a number. Syntax: String( String value ) Parameters: [...]
[...] false
Boolean ( String ) Initializes a new Boolean instance by converting the specified string to a boolean. "true" = true , "false" = false , not case-sensitive. Syntax: Boolean( String value ) Parameters: value: A String . Example:
s = "true";
b = new Boolean( s ); // results in true
Boolean ( Number ) Initializes a new Boolean instance by converting the specified number to a boolean. 0 results in a value of false , all other numeric values result in true . Syntax: Boolean( Number value ) Parameters: value: [...]
J9 Automation Engine
News: The J9 Automation Engine has moved to a new website. New Website Click HERE to visit our new home. Please take a few moments to update your bookmarks, then use the links below for quick navigation.
Community Forum Please use the new community forum HERE . The J9 Automation Engine forum is now used for archival reference and [...]
[...] 2.0 Framework must be installed. Leviton Vizia RF RZC0P or VRC0P Serial Interface Module connected to PC. To receive on the fly node level changes, you must associate all devices/nodes with the RZC0P or VRC0P. This is done via the System Setup -> Advanced-> HAI Setup menu in the Vizia RF Primary Remote. See the RZC0P or VRC0P instructions for details. Some features may require a Vizia RF primary controller. What interface do I need to communicate with my Z-Wave network? There an several PC-to-Z-Wave [...]
The null keyword is a literal that represents a null reference, one that does not refer to any object. The null keyword represents "no value," meaning "nothing," not even an empty string or zero. It can be used
The Array object is used to store a set of values in a single variable name. Arrays are zero indexed meaning the first element is at index zero. Elements in arrays can be different types. The array elements are accessed through computed indexes. Square brackets [...] are used in the script to enclose the index number. Constructors Array ( ) Initializes a new empty Array instance. Syntax: Array ( ) Example:
a = new Array();
Instance Properties Length Gets [...]
[...] Parameters: rowNumber: The row number. columnName: The name of the column. defaultValue: The value to return if the specified row/column value is null. 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", "myvalue");
GetFieldNumber ( Number, String ) Retrieves a value from the DataTable at the specified row and column as a Number. Syntax: Number GetFieldNumber ( Number rowNumber, String columnName ) Parameters: rowNumber: The row number. [...]
Used only as the return type for a method or a parameter type of a method to specify that the return value or parameter [...]
Used only as the return type for a method to specify that the method does not return a [...]
This page is restricted to administrators only. {stats}