Package com.microstrategy.web.objects
Interface WebGridHeaders
- 
- All Superinterfaces:
- WebCssFormatContainer
 - All Known Subinterfaces:
- WebGridPageHeaders
 
 public interface WebGridHeaders extends WebCssFormatContainer This interface provides collection type methods to traverse and obtainWebHeadersobjects. Each WebHeaders object in turn refer to a collection ofWebHeaderobjects that should be laid out in a tabular row - this only applies to row and column WebGridHeaders; page-by headers are typically rendered with a drop-down box so without the concern of laying out page-by headers in a tabular row, they may be encapsulated within a single page-by WebGridHeaders object.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumeration<WebHeaders>elements()WebHeadersget(int index)Returns the WebHeaders object at the given index (starting from 0).intgetBlockBegin()intgetBlockCount()booleanisEmpty()intsize()- 
Methods inherited from interface com.microstrategy.web.objects.WebCssFormatContainergetCssClass, getCssFormat, getFormatPropertySets
 
- 
 
- 
- 
- 
Method Detail- 
elementsjava.util.Enumeration<WebHeaders> elements() - Returns:
- an enumeration of WebHeadersobjects.
 
 - 
sizeint size() - Returns:
- the number of WebHeaders in the collection.
 
 - 
getBlockBeginint getBlockBegin() 
 - 
getBlockCountint getBlockCount() 
 - 
getWebHeaders get(int index) Returns the WebHeaders object at the given index (starting from 0).- Parameters:
- index- index of the element to return.
- Returns:
- the element at the specified position.
- Throws:
- java.lang.IndexOutOfBoundsException- if index is out of range- (index < 0 || index >= size()).
- See Also:
- WebHeaders
 
 - 
isEmptyboolean isEmpty() - Returns:
- whether size()==0.
 
 
- 
 
-