diff options
| author | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
|---|---|---|
| committer | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
| commit | 7ed83b6c6666eb8b6b104c211ae7e52907350372 (patch) | |
| tree | 4430b556abac0ad660a0aacf1887d77f85d8be02 /scribus/doc/en/scripterapi-select.html | |
| download | scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.gz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.xz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.zip | |
Branch 1.3.5 tree to 1.4.x tree, goodbye 1.3.x
git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17163 11d20701-8431-0410-a711-e3c959e3b870
Diffstat (limited to 'scribus/doc/en/scripterapi-select.html')
| -rw-r--r-- | scribus/doc/en/scripterapi-select.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/scribus/doc/en/scripterapi-select.html b/scribus/doc/en/scripterapi-select.html new file mode 100644 index 0000000..1c81936 --- /dev/null +++ b/scribus/doc/en/scripterapi-select.html @@ -0,0 +1,37 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> + <title>Selecting Objects</title> +</head> +<body> +<h2>Selecting Objects</h2> + +<dl> + +<dt><a name="-deselectAll"><strong>deselectAll</strong></a>(...)</dt> +<dd><code>deselectAll()</code> +<p>Deselects all objects in the whole document.</p></dd></dt> + +<dt><a name="-getSelectedObject"><strong>getSelectedObject</strong></a>(...)</dt> +<dd><code>getSelectedObject([nr]) -> string</code> +<p>Returns the name of the selected object. "nr" if given indicates the number of the selected object, e.g. 0 means the first selected object, 1 means the second selected Object and so on.</p></dd> + +<dt><a name="-moveSelectionToBack"><strong>moveSelectionToBack</strong></a>(...)</dt> +<dd><code>moveSelectionToBack()</code> +<p>Moves the current selection to the back.</p></dd> + +<dt><a name="-moveSelectionToFront"><strong>moveSelectionToFront</strong></a>(...)</dt> +<dd><code>moveSelectionToFront()</code> +<p>Moves the current selection to the front.</p></dd> + +<dt><a name="-selectionCount"><strong>selectionCount</strong></a>(...)</dt> +<dd><code>selectionCount() -> integer</code> +<p>Returns the number of selected objects.</p></dd> + +<dt><a name="-selectObject"><strong>selectObject</strong></a>(...)</dt> +<dd><code>selectObject("name")</code> +<p>Selects the object with the given "name".</p></dd> + +</dl> +</body> +</html> |
