diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-02 10:08:54 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-02 10:08:54 (GMT) |
commit | e95593e9b1498843b403d20f956a0eac9d3b4cc0 (patch) | |
tree | 23c1604ad8ae9b6f909f4c0054dba79c5add2886 /Doc/library/msilib.rst | |
parent | 90cc5ab976af11adc3469b04a290c2a15a9d4079 (diff) | |
download | cpython-e95593e9b1498843b403d20f956a0eac9d3b4cc0.zip cpython-e95593e9b1498843b403d20f956a0eac9d3b4cc0.tar.gz cpython-e95593e9b1498843b403d20f956a0eac9d3b4cc0.tar.bz2 |
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.
........
Diffstat (limited to 'Doc/library/msilib.rst')
-rw-r--r-- | Doc/library/msilib.rst | 13 |
1 files changed, 13 insertions, 0 deletions
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 @@ Record Objects :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 @@ definitions. Currently, these definitions are based on MSI version 2.0. This module contains definitions for the UIText and ActionText tables, for the standard installer actions. + |