ISummaryZoomSection
All Implemented Interfaces: com.aspose.slides.ISectionZoomFrame
public interface ISummaryZoomSection extends ISectionZoomFrame
Represents a Summary Zoom Section object in a Summary Zoom frame.
Methods
| Method | Description |
|---|---|
| getTitle() | Returns the text title of the Summary Zoom Section object. |
| setTitle(String value) | Returns the text title of the Summary Zoom Section object. |
| getDescription() | Returns the text description of the Summary Zoom Section object. |
| setDescription(String value) | Returns the text description of the Summary Zoom Section object. |
getTitle()
public abstract String getTitle()
Returns the text title of the Summary Zoom Section object.
Example: ISummaryZoomSection zoomSection = zoomFrame.getSummaryZoomCollection().get_Item(1); zoomSection.setTitle("Title");
Returns: java.lang.String
setTitle(String value)
public abstract void setTitle(String value)
Returns the text title of the Summary Zoom Section object.
Example: ISummaryZoomSection zoomSection = zoomFrame.getSummaryZoomCollection().get_Item(1); zoomSection.setTitle("Title");
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | java.lang.String |
getDescription()
public abstract String getDescription()
Returns the text description of the Summary Zoom Section object.
Example: ISummaryZoomSection zoomSection = zoomFrame.getSummaryZoomCollection().get_Item(1); zoomSection.setDescription("Description");
Returns: java.lang.String
setDescription(String value)
public abstract void setDescription(String value)
Returns the text description of the Summary Zoom Section object.
Example: ISummaryZoomSection zoomSection = zoomFrame.getSummaryZoomCollection().get_Item(1); zoomSection.setDescription("Description");
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | java.lang.String |