ListColumnCollection

ListColumnCollection

Overview

ListColumnCollection is a class in Aspose.Cells FOSS for Java. Inherits from: Iterable<ListColumn>.

Ordered collection of columns in an Excel table.

This class provides 5 methods for working with ListColumnCollection objects in Java. Available methods include: get, getCount, hasNext, iterator, next. All public members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: count.

Description

ListColumnCollection is a class in the Aspose.Cells FOSS library for Java that exposes 5 methods and 1 property for programmatic use. It extends Iterable<ListColumn>, inheriting shared functionality from its parent type.

The class also provides the count property (gets the count).

Properties

NameTypeAccessDescription
countintReadGets the count.

Methods

SignatureDescription
getCount()intReturns the count.
get(index: int)ListColumnReturns the list column at the given index.
iterator()Iterator<ListColumn>Returns an iterator over the list columns.
hasNext()booleanReturns true if next is present.
next()ListColumnReturns the next list column in the iteration.

See Also