Adds a new row to the collection. Syntax Parameters raiseAddEvents Specifies whether to raise RowAdding and RowAdded events. Return Value Returns the new row that was added to the collection. Remarks Add method creates a new row and adds it to the collection. If raiseAddEvents argument is true, RowAdding and RowAd...
Adds a new row to the collection. Syntax Parameters raiseAddEvents Specifies whether to raise RowAdding and RowAdded events.bypassEditState If this parameter is specified as True then the added row will be put in Edit and AddNew states. When a row is in Edit state it can be cancelled by calling ((IEditableObject)r...
Adds a new row to the collection. Syntax Parameters raiseAddEvents Specifies whether to raise RowAdding and RowAdded events.cellValues Specifies the cell values with which to initialize the new row. An exception is thrown if the array is null or has more elements thant the number of columns or if a value cannot be...
Adds a new row to the collection. Syntax Parameters raiseAddEvents Specifies whether to raise RowAdding and RowAdded events. Overloads of this method that do not take this parameter default it to False.cellValues Specifies the cell values with which to initialize the new row. An exception is thrown if the array is...
Adds a new row to the collection. Syntax Parameters cellValues Specifies the cell values with which to initialize the new row. An exception is thrown if the array is null or has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column. Return Value Re...
Adds a new row to the collection. Overload List
Gets the band associated with the row collection. Syntax Example Following code shows various objects in the UltraWinDataSource object model and many of the properties available off those objects and how they are related.
Clears the rows collection. Syntax Remarks Clear method removes all the rows from the collection. This has the same effect as setting the count to 0 by calling SetCount(Int32). Note: Calling this method does not raise RowDeleting and RowDeleted events. Example Following code shows various methods and properties av...
Indicates whether the specified row is contained in the collection. Syntax Parameters row Object to evaluate Return Value true if the item is found in the list; otherwise, false. Example Following code shows various methods and properties available on UltraDataRowsCollection object for manipulating the row collect...
Returns the number of items in this collection. Syntax Remarks The Count property returns the number of rows contained in this row collection. You can add one or more rows using the Add or Insert(Int32) methods. You can also use the SetCount(Int32) method to specify that the collection contain a specified number o...