MemoArguments
The MemoArguments object is an instance object, and is used as a parameter to the invoke() method when invoking the Memo application.
Supported Platform(s)
- BlackBerry OS 5.0+
- Ripple Emulator
API | OS 5.0 | OS 6.0 | OS 7.0 | PlayBook | Ripple |
---|---|---|---|---|---|
blackberry.invoke.MemoArguments | Y | Y | Y | Y | |
view | Y | Y | Y | Y | |
VIEW_NEW | Y | Y | Y | Y | |
VIEW_EDIT | Y | Y | Y | Y |
Configuration Document Settings
To use all of the API described for this object, you must ensure the following settings are in your configuration document:
You must declare the feature element(s) below in your configuration document:
Feature ID | OS 5.0 | OS 6.0 | OS 7.0 | PlayBook | Ripple |
---|---|---|---|---|---|
<feature id="blackberry.invoke" /> | Y | Y | Y | Y | |
<feature id="blackberry.invoke.MemoArguments" /> | Y | Y | Y | Y | |
<feature id="blackberry.pim.Memo" /> | Y | Y | Y | Y |
Permission Elements (PlayBook Only) |
---|
This API does not require a <permission> element to be declared in the configuration document of your BlackBerry WebWorks Application. |
API Summary
Constructors
Properties
blackberry.invoke.MemoArguments
blackberry.invoke.MemoArguments ([memo: blackberry.pim.Memo]) |
Supported Platform(s)
- BlackBerry OS 5.0+- Ripple Emulator
Description
The MemoArguments object must be created as an instance using the new keyword.
Parameter | Type | Description |
---|---|---|
memo |
blackberry.pim.Memo
Optional |
Memo to view in MemoPad application. |
Code Example(s)
<script type="text/javascript"> var memo = new blackberry.pim.Memo(); memo.title = 'Oranges I like'; memo.note = 'Sunkist'; var args = new blackberry.invoke.MemoArguments(memo); args.view = 0; // New blackberry.invoke.invoke(blackberry.invoke.APP_MEMOPAD, args); // Memo Pad </script>
Properties:
Property | Type | Description | Supported Platform(s) |
---|---|---|---|
view | Number |
Value that specifies what kind of view you want to view the memo in MemoPad application.
|
- BlackBerry OS 5.0+
- Ripple Emulator |
Constants:
Property | Type | Description | Supported Platform(s) |
---|---|---|---|
VIEW_NEW | Number |
New View
|
- BlackBerry OS 5.0+
- Ripple Emulator |
VIEW_EDIT | Number |
Edit View
|
- BlackBerry OS 5.0+
- Ripple Emulator |
Documentation generated by JsDoc Toolkit 2.4.0 on Sun Dec 30 2012 13:31:18 GMT-0500 (EST)