summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNagappan <nagapan@gmail.com>2010-06-22 20:12:36 -0700
committerNagappan <nagapan@gmail.com>2010-06-22 20:12:36 -0700
commit66bfb57cd1c5984d68ad3304a6040525d9f332ea (patch)
tree3bdcf59f3fb7e11d8e7c653b60e45b6aa095674d
parentad7710b008366239b7d20a871c7dcae103738b87 (diff)
Updated doc
-rw-r--r--doc/pyldtp-doc.h64
1 files changed, 18 insertions, 46 deletions
diff --git a/doc/pyldtp-doc.h b/doc/pyldtp-doc.h
index ceb9282..857c183 100644
--- a/doc/pyldtp-doc.h
+++ b/doc/pyldtp-doc.h
@@ -373,12 +373,6 @@
*
* \section LabelAPI Label python API's
*
- * \subpage getlabel - Get label of an object
- * \n
- * \n
- * \subpage getlabelatindex - Get label at the specified index in a window
- * \n
- * \n
* \subpage selectlabelspanelbyname - Select the labels based on panel name
*
*/
@@ -2836,44 +2830,6 @@
* \author Premkumar J <prem.jothimani@gmail.com>
*/
-/** \page getlabel getlabel
- * \section Syntax
- *
- * getlabel ('\<window name\>', '\<label name\>')
- *
- * \section Description
- *
- * \retval label string on success, LdtpExecutionError exception on failure
- *
- * Refer: http://cgit.freedesktop.org/ldtp/ldtp/tree/src/label.c
- *
- * \section Example
- *
- * \todo
- *
- * \author Thanikachalam S <thanika1999@yahoo.com>
- */
-
-/** \page getlabelatindex getlabelatindex
- * \section Syntax
- *
- * getlabelatindex ('\<window name\>', '\<panel name\>', index)
- *
- * \section Description
- *
- * Gets label name based on index from the panel.
- *
- * \retval label name on success, LdtpExecutionError exception on failure
- *
- * Refer: http://cgit.freedesktop.org/ldtp/ldtp/tree/src/label.c
- *
- * \section Example
- *
- * \todo
- *
- * \author Nagappan Alagappan <nagappan@gmail.com>
- */
-
/** \page selectitem selectitem
* \section Syntax
*
@@ -3795,17 +3751,33 @@
/** \page setcellvalue setcellvalue
* \section Syntax
*
- * setcellvalue ('<window name\>', '<table name\>', <row\>, <column\>, '<item\>')
+ * setcellvalue ('<window name\>', '<table name\>', <row\>[, <column\>[, '<data\>']])
*
* \section Description
*
+ * Set a text in a cell or toggle a cell
+ *
* \retval 1 on success, LdtpExecutionError exception on failure
*
* Refer: http://cgit.freedesktop.org/ldtp/ldtp/tree/src/table.c
*
* \section Example
*
- * \todo
+ * With respect to gedit 2.30.2 Preferences dialog, Plugins tab
+ *
+ * To toggle a plugin
+ *
+ * setcellvalue('gedit Preferences', 'tblActivePlugins', 0)
+ *
+ * With respect to Evolution 2.28.3, Tasks in Calendar view
+ *
+ * To change existing task name
+ *
+ * Note: Evolution doesn't provide an option through accessibility way to add Tasks in Calendar view, to work around use File->New->Tasks to add a New Task
+ *
+ * The following example works only with existing task !
+ *
+ * setcellvalue('Calendars - Evolution', 'tblTasks', 0, 2, 'Hello')
*
* \author Nagappan Alagappan <nagappan@gmail.com>
*/