| java.lang.Object org.apache.poi.hslf.model.Sheet
All known Subclasses: org.apache.poi.hslf.model.MasterSheet, org.apache.poi.hslf.model.Notes, org.apache.poi.hslf.model.Slide,
Sheet | abstract public class Sheet (Code) | | This class defines the common format of "Sheets" in a powerpoint
document. Such sheets could be Slides, Notes, Master etc
author: Nick Burch author: Yegor Kozlov |
_getSheetNumber | public int _getSheetNumber()(Code) | | Returns the (internal, SlideIdentifier based) sheet number, as used
to reference this sheet from other records.
|
_getSheetRefId | public int _getSheetRefId()(Code) | | Returns the (internal, RefID based) sheet number, as used
to in PersistPtr stuff.
|
addShape | public void addShape(Shape shape)(Code) | | Add a new Shape to this Slide
Parameters: shape - - the Shape to add |
findTextRuns | public static TextRun[] findTextRuns(PPDrawing ppdrawing)(Code) | | For a given PPDrawing, grab all the TextRuns
|
findTextRuns | protected static void findTextRuns(Record[] records, Vector found)(Code) | | Scans through the supplied record array, looking for
a TextHeaderAtom followed by one of a TextBytesAtom or
a TextCharsAtom. Builds up TextRuns from these
Parameters: records - the records to build from Parameters: found - vector to add any found to |
getBackground | public Background getBackground()(Code) | | Returns the background shape for this sheet.
the background shape for this sheet. |
getMasterSheet | abstract public MasterSheet getMasterSheet()(Code) | | Return the master sheet .
|
getPPDrawing | protected PPDrawing getPPDrawing()(Code) | | Fetch the PPDrawing from the underlying record
|
getShapes | public Shape[] getShapes()(Code) | | Returns all shapes contained in this Sheet
all shapes contained in this Sheet (Slide or Notes) |
getSheetContainer | public SheetContainer getSheetContainer()(Code) | | Return record container for this sheet
|
getSlideShow | public SlideShow getSlideShow()(Code) | | Fetch the SlideShow we're attached to
|
getTextRuns | abstract public TextRun[] getTextRuns()(Code) | | Returns an array of all the TextRuns in the sheet.
|
setSlideShow | public void setSlideShow(SlideShow ss)(Code) | | Set the SlideShow we're attached to.
Also passes it on to our child RichTextRuns
|
|
|