Package org.apache.poi.sl.usermodel
Interface Hyperlink<S extends Shape<S,P>,P extends TextParagraph<S,P,? extends TextRun>>
- All Superinterfaces:
Hyperlink
- All Known Implementing Classes:
HSLFHyperlink,XSLFHyperlink
public interface Hyperlink<S extends Shape<S,P>,P extends TextParagraph<S,P,? extends TextRun>>
extends Hyperlink
A PowerPoint hyperlink
- Since:
- POI 3.14 beta 2
-
Method Summary
Modifier and TypeMethodDescriptionvoidlinkToEmail(String emailAddress) Link to an emailvoidLink to the first slide in this slideshowvoidLink to the last slide in this slideshowvoidLink to the next slide (relative from the current)voidLink to the previous slide (relative from the current)voidlinkToSlide(Slide<S, P> slide) Link to a slide in this slideshowvoidLink to a web page / URLMethods inherited from interface org.apache.poi.common.usermodel.Hyperlink
getAddress, getLabel, getType, getTypeEnum, setAddress, setLabel
-
Method Details
-
linkToEmail
Link to an email- Parameters:
emailAddress- the email address- Since:
- POI 3.14-Beta2
-
linkToUrl
Link to a web page / URL- Parameters:
url- the url- Since:
- POI 3.14-Beta2
-
linkToSlide
Link to a slide in this slideshow- Parameters:
slide- the linked slide- Since:
- POI 3.14-Beta2
-
linkToNextSlide
void linkToNextSlide()Link to the next slide (relative from the current)- Since:
- POI 3.14-Beta2
-
linkToPreviousSlide
void linkToPreviousSlide()Link to the previous slide (relative from the current)- Since:
- POI 3.14-Beta2
-
linkToFirstSlide
void linkToFirstSlide()Link to the first slide in this slideshow- Since:
- POI 3.14-Beta2
-
linkToLastSlide
void linkToLastSlide()Link to the last slide in this slideshow- Since:
- POI 3.14-Beta2
-