ig.excel.FixedDateGroupCollection

A collection of fixed date groups.

Dependencies

jquery-1.4.4.js
infragistics.util.js
infragistics.ext_core.js
infragistics.ext_collections.js
infragistics.ext_collectionsExtended.js
infragistics.ext_io.js
infragistics.ext_text.js
infragistics.documents.core_core.js
infragistics.ext_ui.js
The current widget has no options.
The current widget has no events.
  • add

    .add( item:ig.excel.FixedDateGroup );

    Adds a fixed date group to the collection.

    • item
    • Type:ig.excel.FixedDateGroup
    • The fixed date group to add to the collection.

    Exceptions

    Exception Description
    ig.ArgumentNullException item is null.
    ig.ArgumentException item is already in the collection.
  • clear

    .clear( );

    Clears the collection.

    Exceptions

    Exception Description
    ig.InvalidOperationException The collection is owned by a FixedValuesFilter which only allowed the values in the collection. Clearing the collection would prevent the filter from including any values, which is not allowed for a FixedValuesFilter.
  • contains

    .contains( item:ig.excel.FixedDateGroup );
    Return Type:
    boolean
    Return Type Description:
    True if the item is in the collection; False otherwise.

    Determines whether the specified fixed date group is in the collection.

    • item
    • Type:ig.excel.FixedDateGroup
    • The fixed date group to find in the collection.
  • count

    .count( );

    Gets the number of fixed date groups in the collection.

  • indexOf

    .indexOf( item:ig.excel.FixedDateGroup );
    Return Type:
    number
    Return Type Description:
    The 0-based index of the specified fixed date group in the collection or -1 if the item is not in the collection.

    Gets the index of the specified fixed date group in the collection.

    • item
    • Type:ig.excel.FixedDateGroup
    • The fixed date group to find in the collection.
  • insert

    .insert( index:number, item:ig.excel.FixedDateGroup );

    Inserts a fixed date group into the collection.

    • index
    • Type:number
    • The 0-based index where the value should be inserted.
    • item
    • Type:ig.excel.FixedDateGroup
    • The fixed date group to insert into the collection.

    Exceptions

    Exception Description
    ig.ArgumentNullException item is null.
    ig.ArgumentException item is already in the collection.
    ig.ArgumentOutOfRangeException index is less than 0 or greater than FixedDateGroupCollection.count.
  • item

    .item( index:number );
    Return Type:
    ig.excel.FixedDateGroup
    Return Type Description:
    Returns a FixedDateGroup.

    Gets the fixed date group at the specified index.

    • index
    • Type:number
    • The 0-based index of the value to get or set.

    Exceptions

    Exception Description
    ig.ArgumentOutOfRangeException index is less than 0 or greater than or equal to FixedDateGroupCollection.count.
    ig.ArgumentNullException The value assigned is null.
    ig.ArgumentException The value assigned is already in the collection.
  • item

    .item( index:number, value:ig.excel.FixedDateGroup );
    Return Type:
    ig.excel.FixedDateGroup
    Return Type Description:
    Returns a FixedDateGroup.

    Sets the fixed date group at the specified index.

    • index
    • Type:number
    • The 0-based index of the value to get or set.
    • value
    • Type:ig.excel.FixedDateGroup

    Exceptions

    Exception Description
    ig.ArgumentOutOfRangeException index is less than 0 or greater than or equal to FixedDateGroupCollection.count.
    ig.ArgumentNullException The value assigned is null.
    ig.ArgumentException The value assigned is already in the collection.
  • remove

    .remove( item:ig.excel.FixedDateGroup );
    Return Type:
    boolean
    Return Type Description:
    True if the value was found and removed; False otherwise.

    Removes the fixed date group from the collection.

    • item
    • Type:ig.excel.FixedDateGroup
    • The fixed date group to remove from the collection.
  • removeAt

    .removeAt( index:number );

    Removes the fixed date group at the specified index.

    • index
    • Type:number
    • The 0-based index of the value to remove.

    Exceptions

    Exception Description
    ig.ArgumentOutOfRangeException index is less than 0 or greater than or equal to FixedDateGroupCollection.count.
    ig.InvalidOperationException This operation removes the last item in the collection and it is owned by a FixedValuesFilter which only allowed the values in the collection. Clearing the collection would prevent the filter from including any values, which is not allowed for a FixedValuesFilter.

Copyright © 1996 - 2024 Infragistics, Inc. All rights reserved.