Interface IDataStoreRepeatableRowGroupIntegrationCom
- Namespace
- Sfrep.AppraiseIt.Client.Integration.Com.DataStore
- Assembly
- Sfrep.AppraiseIt.Client.Integration.Com.dll
A repeatable row group in the dynamic data store.
[ComVisible(true)]
[Guid("8FBC8936-36AF-475C-9710-D89201E60500")]
public interface IDataStoreRepeatableRowGroupIntegrationCom : IDisposable
Methods
AddItem()
Adds an item to this repeatable row group.
IDataStoreRepeatableRowGroupItemIntegrationCom AddItem()
Returns
- IDataStoreRepeatableRowGroupItemIntegrationCom
The newly added repeatable row group item.
Remarks
Each call returns a new instance that, to prevent resource leaks, must be disposed by calling the Dispose method once it is no longer needed.
Clear()
Clears all field data in this repeatable row group.
void Clear()
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
void Dispose()
GetItem(int)
Gets the specified item in this repeatable row group.
IDataStoreRepeatableRowGroupItemIntegrationCom GetItem(int rowGroupItemIndex)
Parameters
rowGroupItemIndexintThe item's index.
Returns
- IDataStoreRepeatableRowGroupItemIntegrationCom
The specified item in this repeatable row group.
Remarks
Each call returns a new instance that, to prevent resource leaks, must be disposed by calling the Dispose method once it is no longer needed.
ItemCount()
Gets the number of items in this repeatable row group.
int ItemCount()
Returns
- int
The number of items in this repeatable row group.
RemoveItem(int)
Removes the specified item from this repeatable row group.
void RemoveItem(int rowGroupItemIndex)
Parameters
rowGroupItemIndexintThe item's index.
RowGroupId()
Gets the repeatable row group's ID.
string RowGroupId()
Returns
- string
The repeatable row group's ID.