Information
- Source
Methods
(inner) browserInfo()
Determines the capabilities of a Web client, that is you can determine the properties of the browser for the current request.
- Source
- See
- For further information, see www.hcltechsw.com
- To Do
- this needs to be implemented
method not implemented
- Type
- Error
(inner) cell()
Returns information about the formatting, location, or contents of a value. Category: Information
- Source
No plans to implement
(inner) clientType()
Returns a text string to differentiate Notes® clients and World Wide Web browsers.
- Source
- See
- For further information, see www.hcltechsw.com
- To Do
- this needs to be implemented
method not implemented
- Type
- Error
(inner) configFile()
Returns the file path for the initialization file for Notes® (notes.ini).
- Source
no plans to implement
- Type
- Error
(inner) fontList()
Provides a list of available fonts on the Notes® client where this @function is executed.
- Source
no plans to implement
- Type
- Error
(inner) getAddressBooks()
Returns a list of the address books associated with a client (if the current database is local) or server.
- Source
no plans to implement
- Type
- Error
(inner) info()
Returns information about the current operating environment. Category: Information
- Source
No plans to implement
(inner) isAppInstalled()
Indicates whether the specified type of application is installed.
- Source
no plans to implement
- Type
- Error
(inner) isBlank(value) → {boolean}
Returns TRUE if the value is blank.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
- See
- For further information, see docs.oasis-open.org
if the value is null.
- Type:
- boolean
rosettajs.Information.isBlank(null) // returns true
rosettajs.Information.isBlank("") // returns false
(inner) isEmbeddedInsideWCT()
Indicates whether any part of the current Notes® session is embedded inside of Workplace client.
- Source
no plans to implement
- Type
- Error
(inner) isErr(value) → {boolean}
Returns TRUE if the value is any error value except #N/A.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
- See
- For further information, see docs.oasis-open.org
True if the value is an error other than #N/A
- Type:
- boolean
rosettajs.Information.isErr(1/0); // Returns true
rosettajs.Information.isErr(1); // Returns false
(inner) isError(value) → {boolean}
Returns TRUE if the value is any error value.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
- See
- For further information, see www.hcltechsw.com and docs.oasis-open.org
- Type:
- boolean
rosettajs.Information.isError(1/0); // Returns true
rosettajs.Information.isError(1); // Returns false
(inner) isEven(number) → {number}
Returns TRUE if the number is even.
Name | Type | Description |
---|---|---|
number | number | The value to test. If number is not an integer, it is truncated. |
- Source
- See
- For further information, see docs.oasis-open.org
true if a number is even and false if it is not
- Type:
- number
rosettajs.Information.isEven(-3); // returns false
rosettajs.Information.isEven(2); // returns true
(inner) isFormula(reference)
Returns TRUE if there is a reference to a value that contains a formula. Category: Information
Name | Type | Description |
---|---|---|
reference | * | Reference is a reference to the value you want to test. Reference can be a value reference, a formula, or a name that refers to a value. |
- Source
No plans to implement
(inner) isInCompositeApp()
Indicates whether the component is running within a composite application.
- Source
no plans to implement
- Type
- Error
(inner) isLogical(value) → {boolean}
Returns TRUE if the value is a logical value.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
- See
- For further information, see docs.oasis-open.org
true if the value is true, and false if the value is false or 0.
- Type:
- boolean
rosettajs.Information.isLogical(true); // returns true
rosettajs.Information.isLogical(0); // returns false
(inner) isModalHelp()
Indicates whether the current document is a modal Help document.
- Source
no plans to implement
- Type
- Error
(inner) isNA(value) → {boolean}
Returns TRUE if the value is the #N/A error value.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
- See
- For further information, see docs.oasis-open.org
returns true if the value being evaluated is equal to error.na, false if not;
- Type:
- boolean
rosettajs.Information.isNA(error.na); // returns true.
rosettajs.Information.isNA(1); // returns false.
(inner) isNonText(value) → {boolean}
Returns TRUE if the value is not text.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
- See
- For further information, see docs.oasis-open.org
true if value is not a string, false if it is.
- Type:
- boolean
rosettajs.Information.isNonText(1); // returns true.
rosettajs.Information.isNonText('string'); // returns false.
(inner) isNumber(value) → {boolean}
Returns TRUE if the value is a number.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. When using the Notes formula implementation the value can be a list. |
- Source
- See
- For further information, see www.hcltechsw.com and docs.oasis-open.org
true if value is a number, false if not. or the Open Formula implementation see www.oasis-open.org
- Type:
- boolean
rosettajs.Information.isNumber(1); // Returns true
rosettajs.Information.isNumber("1"); // Returns false
rosettajs.API.setDefaultAPIAsNotes();
rosettajs.Text.isNumber([-345, 2.78. 997, .7]); // Returns true
(inner) isOdd(value) → {boolean}
Returns TRUE if the number is odd.
Name | Type | Description |
---|---|---|
value | number | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
true if the value is an odd number, false if not.
- Type:
- boolean
rosettajs.Information.isOdd(1); // returns true.
rosettajs.Information.isOdd('string'); // returns false.
rosettajs.Information.isOdd(2.5); // returns false.
(inner) isRef(value)
Returns TRUE if the value is a reference. Category: Information
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. |
- Source
No plans to implement
(inner) isText(value) → {boolean}
Returns TRUE if the value is text.
Name | Type | Description |
---|---|---|
value | * | The value that you want tested. The value argument can be a blank (empty value), error, logical value, text, number, or reference value, or a name referring to any of these. When using the Notes formula implementation the value can be a list. |
- Source
- See
- For further information, see www.hcltechsw.com and docs.oasis-open.org
returns true if value has type string, false if not. or the Open Formula implementation see www.oasis-open.org
- Type:
- boolean
rosettajs.Information.isText(1); // Returns false
rosettajs.Information.isText("1"); // Returns true
rosettajs.API.setDefaultAPIAsNotes();
rosettajs.Text.isText('xyz', 'abc', 7.7); // returns false
(inner) isUsingJavaElement()
Indicates whether a view or outline uses the Java™ user interface.
- Source
no plans to implement
- Type
- Error
(inner) isVirtualizedDirectory()
Indicates whether virtualized directories are enabled for the current server.
- Source
no plans to implement
- Type
- Error
(inner) languagePreference(keyword) → {TextOrTextList}
Returns user's specified preferred language setting.
Name | Type | Description |
---|---|---|
keyword | Text | Specify a category for which you would like to get the preferred language. The following categories are available: [REGION] [CONTENT] [ALTERNATENAME] |
- Source
- See
- For further information, see www.hcltechsw.com
Text or Text list that represents the language and country code for user's preferred setting. [REGION] language is set as the default. If @LanguagePreference cannot find the language setting for the specified category, it returns the language for [REGION].
- Type:
- TextOrTextList
@LanguagePreference([REGION]); // returns 'fr-CA'
@LanguagePreference([ALTERNATENAME]); // returns 'fr'
(inner) ldapServer()
Returns the URL and port number of the LDAP listener in the current domain. Notes® looks for this information in several places, following this search sequence:
- Searches on the current server.
- Searches for the notes.ini variable labeled LDAPSERVER=.
- Queries the administration server, which runs the LDAP service automatically, by default.
- Source
- See
- For further information, see www.hcltechsw.com
- To Do
- this needs to be implemented
method not implemented
- Type
- Error
(inner) n(value) → {number|Error}
Returns a value converted to a number.
Name | Type | Description |
---|---|---|
value | * | The value you want converted. N converts values listed in the following table. |
- Source
- See
- For further information, see docs.oasis-open.org
value if it is a number, value.getTime if it is an instance of Date, 1 if true, 0 if false, otherwise it returns an error.
- Type:
- number |
Error
rosettajs.Information.n(rosettajs.Logical.true()); // Returns 1
(inner) na() → {error}
Returns the error value #N/A.
- Source
- See
- For further information, see docs.oasis-open.org
error.na
- Type:
- error
rosettajs.Information.isNA(rosettajs.Information.na()); // Returns true
(inner) notesError()
Allows you to generate an error condition within an expression. This is useful if you want to evaluate the current values in several fields and need to know if an error has occurred in the entry of any of them.
- Source
- See
- For further information, see www.hcltechsw.com
Notes Error
- Type
- Error
(inner) regQueryValue()
Copies the administration execution control list from a specified Address Book and name to your personal workstation ECL.
- Source
no plans to implement
- Type
- Error
(inner) serverAccess()
Checks if a specified user has a specified administrative access level to a server.
- Source
no plans to implement
- Type
- Error
(inner) sheet(value)
Returns the sheet number of the referenced sheet. Category: Information
Name | Type | Description |
---|---|---|
value | * | Optional. Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function. |
- Source
No plans to implement
(inner) sheets(reference)
Returns the number of sheets in a reference. Category: Information
Name | Type | Description |
---|---|---|
reference | * | Optional. Reference is a reference for which you want to know the number of sheets it contains. If Reference is omitted, SHEETS returns the number of sheets in the workbook that contains the function. |
- Source
No plans to implement
(inner) soundex()
Returns the Soundex (the Notes® phonetic speller) code for the specified string.
- Source
- See
- For further information, see www.hcltechsw.com
- To Do
- this needs to be implemented
method not implemented
- Type
- Error
(inner) templateVersion()
Returns the version number of the master template upon which the database design is based.
- Source
no plans to implement
- Type
- Error
(inner) thisName(eventobject) → {string}
Returns the name of the current field. Only works within the context of a text/field widget.
Name | Type | Description |
---|---|---|
eventobject | * | Optional. If the eventobject is not specified, the eventobject set by setActionEventObject is used. |
- Source
- See
- For further information, see www.hcltechsw.com
The name of the current field.
- Type:
- string
(inner) thisValue(eventobject) → {string}
Returns the value of the current field. Only works within the context of a text/field widget.
Name | Type | Description |
---|---|---|
eventobject | * | Optional. If the eventobject is not specified, the eventobject set by setActionEventObject is used. |
- Source
- See
- For further information, see www.hcltechsw.com
The value of the current field.
- Type:
- string
(inner) type(value) → {number|undefined}
Returns a number indicating the data type of a value.
Name | Type | Description |
---|---|---|
value | * | Can be any Microsoft Excel value, such as a number, text, logical value, and so on. |
- Source
1 if value is a number, 2 if value is text, 4 if value isLogical, 16 if value is an array, 64 if value is an error/
- Type:
- number |
undefined