SummaryZoomSection

Inheritance: java.lang.Object, com.aspose.slides.Shape, com.aspose.slides.GraphicalObject, com.aspose.slides.ZoomObject, com.aspose.slides.SectionZoomFrame

All Implemented Interfaces: com.aspose.slides.ISummaryZoomSection

public class SummaryZoomSection extends SectionZoomFrame implements ISummaryZoomSection

Represents a Summary Zoom Section object in a Summary Zoom frame.

Methods

MethodDescription
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 final 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 final 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:

ParameterTypeDescription
valuejava.lang.String

getDescription()

public final 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 final 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:

ParameterTypeDescription
valuejava.lang.String