Class DataStoreNestedRepeatableRowGroupIntegrationCom
- 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("C5061380-84BF-4A2B-A442-308BA25406B2")]
[ClassInterface(ClassInterfaceType.None)]
public sealed class DataStoreNestedRepeatableRowGroupIntegrationCom : IDataStoreNestedRepeatableRowGroupIntegrationCom, IDisposable
- Inheritance
-
objectDataStoreNestedRepeatableRowGroupIntegrationCom
- Implements
- Inherited Members
-
object.ToString()object.Equals(object)object.Equals(object, object)object.ReferenceEquals(object, object)object.GetHashCode()object.GetType()
Constructors
DataStoreNestedRepeatableRowGroupIntegrationCom()
This no args constructor is required for COM support and should not be called directly.
public DataStoreNestedRepeatableRowGroupIntegrationCom()
Methods
AddItem()
Adds an item to this nested repeatable row group.
public 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.
public void Clear()
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
GetItem(int)
Gets the specified item in this nested repeatable row group.
public 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.
public int ItemCount()
Returns
- int
The number of items in this nested repeatable row group.
NestedRowGroupId()
Gets the nested repeatable row group's ID.
public string NestedRowGroupId()
Returns
- string
The nested repeatable row group's ID.
RemoveItem(int)
Removes the specified item from this nested repeatable row group.
public void RemoveItem(int nestedRowGroupItemIndex)
Parameters
nestedRowGroupItemIndexintThe item's index.