[]
Initializes a new instance of the RowColCollection class.
The FlexGrid that owns the collection.
The default size of the elements in the collection.
Gets or sets the default size of elements in the collection.
Gets or sets the ID of an element that contains a description of the column headers.
The ID is used as the value of the aria-describedby attribute for all column header elements. For column-specific descriptions, use the column's Column.describedById instead.
Gets the index of the first visible column (where the outline tree is displayed).
Gets or sets the number of frozen rows or columns in the collection.
Frozen rows and columns do not scroll, and instead remain at the top or left of the grid, next to the fixed cells. Unlike fixed cells, however, frozen cells may be selected and edited like regular cells.
Gets or sets the number of frozen rows or columns at the end in the collection.
Frozen rows and columns do not scroll, and instead remain at the top or left of the grid, next to the fixed cells. Unlike fixed cells, however, frozen cells may be selected and edited like regular cells.
Gets the FlexGrid that owns this collection.
Gets a value that indicates whether notifications are currently suspended (see beginUpdate and endUpdate).
get the last frozen column or row (in the case of frozen on the right/bottom, the count goes from right to left or bottom to top, respectively)
Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
Gets or sets the maximum size of elements in the collection.
Gets or sets the minimum size of elements in the collection.
Gets the number of visible elements in the collection (Row.isVisible).
Suspends notifications until the next call to endUpdate.
Checks whether an element can be moved from one position to another.
The index of the element to move.
The position to which to move the element, or specify -1 to append the element.
Whether to adjust the frozen element count when the movement is into or out of the frozen area.
Returns true if the move is valid, false otherwise.
Removes all items from the array.
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target
If target is negative, it is treated as length+target where length is the length of the array.
If start is negative, it is treated as length+start. If end is negative, it is treated as length+end.
If not specified, length of the this object is used as its default value.
Executes a function within a beginUpdate/endUpdate block.
The collection will not be refreshed until the function finishes. This method ensures endUpdate is called even if the function throws an exception.
Function to be executed without updates.
Resumes notifications suspended by a call to beginUpdate.
whether to end update silently i.e without raising collectionChanged event
Returns an iterable of key, value pairs for every entry in the array
Determines whether all the members of an array satisfy the specified test.
A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Returns the this object after filling the section identified by start and end with value
value to fill array section with
index to start filling the array at. If start is negative, it is treated as length+start where length is the length of the array.
index to stop filling the array at. If end is negative, it is treated as length+end.
Returns the elements of an array that meet the condition specified in a callback function.
A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Returns the elements of an array that meet the condition specified in a callback function.
A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.
If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.
Performs the specified action for each element in an array.
A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Gets a column by name, binding, or index.
The method searches the column by name. If a column with the given name is not found, it searches by binding. The searches are case-sensitive.
The name, binding, or index to find.
The column with the specified name or binding, or null if not found.
Gets the total size of the frozen elements in the collection.
Gets the index of the element at a given physical position.
Position of the item in the collection, in pixels.
Finds the next visible cell for a selection change.
Starting index for the search.
Type of move (size and direction).
Size of a page (in case the move is a page up/down).
Gets the total size of the elements in the collection.
Returns true if the caller queries for a supported interface.
Name of the interface to look for.
True if the caller queries for a supported interface.
Determines whether an array includes a certain element, returning true or false as appropriate.
The element to search for.
The position in this array at which to begin searching for searchElement.
Gets the index of a column by name or binding.
The method searches the column by name. If a column with the given name is not found, it searches by binding. The searches are case-sensitive.
The name or binding to find.
The index of column with the specified name or binding, or -1 if not found.
Inserts an item at a specific position in the array.
Position where the item will be added.
Item to add to the array.
Checks whether a column or row is frozen. we take into account the case this.frozen < 0.
The index of the column or row to check.
Adds all the elements of an array separated by the specified separator string.
A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
Returns an iterable of keys in the array
Returns the index of the last occurrence of a specified value in an array.
The value to locate in the array.
The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.
Calls a defined callback function on each element of an array, and returns an array that contains the results.
A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Moves an element from one position to another.
Index of the element to move.
Position where the element should be moved to (-1 to append).
Whether to adjust the frozen element count when the movement is into or out of the frozen area.
Returns true if the element was moved, false otherwise.
Keeps track of dirty state and invalidate grid on changes.
Appends an item to the array.
Item to add to the array.
The new length of the array.
Removes an item from the array.
Item to remove.
True if the item was removed, false if it wasn't found in the array.
Removes an item at a specific position in the array.
Position of the item to remove.
Reverses the elements in an Array.
Assigns an item at a specific position in the array.
Position where the item will be assigned.
Item to assign to the array.
Removes the first element from the array and returns that element.
This method changes the length of the array.
Creates a shallow copy of a portion of an array.
Position where the copy starts.
Position where the copy ends.
A shallow copy of a portion of an array.
Determines whether the specified callback function returns true for any element of an array.
A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Sorts the elements of the array in place.
Specifies a function that defines the sort order. If specified, the function should take two arguments and should return -1, +1, or 0 to indicate the first argument is smaller, greater than, or equal to the second argument. If omitted, the array is sorted in dictionary order according to the string conversion of each element.
A copy of the sorted array.
Returns a string representation of an array. The elements are converted to string using their toLocalString methods.
Returns a string representation of an array.
Adds one or more elements to the beginning of the array and returns the new length of the array.
The new length of the array.
Returns an iterable of values in the array
Occurs when the collection changes.
Submit and View Feedback For
Represents a collection of Column objects in a FlexGrid control.