Example #1
0
 /// <summary>
 /// Set the value of a field in the current record. Remember to Commit()
 /// </summary>
 /// <param name="index">Zero-based index of the field to set</param>
 /// <param name="value">New value</param>
 public void SetValue(int index, object value)
 {
     assertCurrentRecord();
     InstallerTable.SetRecordField(currentRecord, value, index);
 }