Merged revisions 63888 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63888 | martin.v.loewis | 2008-06-02 10:40:06 +0200 (Mo, 02 Jun 2008) | 2 lines
Patch #2125: Add GetInteger and GetString methods for
msilib.Record objects.
........
diff --git a/Doc/library/msilib.rst b/Doc/library/msilib.rst
index 6f558e6..eb58d44 100644
--- a/Doc/library/msilib.rst
+++ b/Doc/library/msilib.rst
@@ -262,6 +262,18 @@
:cfunc:`MsiRecordGetFieldCount`.
+.. method:: Record.GetInteger(field)
+
+ Return the value of *field* as an integer where possible. *field* must
+ be an integer.
+
+
+.. method:: Record.GetString(field)
+
+ Return the value of *field* as a string where possible. *field* must
+ be an integer.
+
+
.. method:: Record.SetString(field, value)
Set *field* to *value* through :cfunc:`MsiRecordSetString`. *field* must be an
@@ -541,3 +553,4 @@
This module contains definitions for the UIText and ActionText tables, for the
standard installer actions.
+