Interface IDataStoreNestedRepeatableRowGroupIntegrationCom
- Namespace
- Sfrep.AppraiseIt.Client.Integration.Com.DataStore
- Assembly
- Sfrep.AppraiseIt.Client.Integration.Com.dll
A nested repeatable row group in the dynamic data store.
[ComVisible(true)]
[Guid("5E214B66-7414-424A-BACF-995A82B62D86")]
public interface IDataStoreNestedRepeatableRowGroupIntegrationCom : IDisposable
Methods
AddItem()
Adds an item to this nested repeatable row group.
IDataStoreNestedRepeatableRowGroupItemIntegrationCom AddItem()
Returns
- IDataStoreNestedRepeatableRowGroupItemIntegrationCom
The newly added nested 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 nested 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 nested repeatable row group.
IDataStoreNestedRepeatableRowGroupItemIntegrationCom GetItem(int nestedRowGroupItemIndex)
Parameters
nestedRowGroupItemIndexintThe item's index.
Returns
- IDataStoreNestedRepeatableRowGroupItemIntegrationCom
The specified item in this nested 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 nested repeatable row group.
int ItemCount()
Returns
- int
The number of items in this nested repeatable row group.
NestedRowGroupId()
Gets the nested repeatable row group's ID.
string NestedRowGroupId()
Returns
- string
The nested repeatable row group's ID.
RemoveItem(int)
Removes the specified item from this nested repeatable row group.
void RemoveItem(int nestedRowGroupItemIndex)
Parameters
nestedRowGroupItemIndexintThe item's index.