public interface IBaseSlideHeaderFooterManager extends IBaseHeaderFooterManager
Represents manager which holds behavior of the footer, date-time, page number placeholders for all slide types.
Modifier and Type | Method and Description |
---|---|
boolean |
isDateTimeVisible()
Gets value indicating that a date-time placeholder is present.
|
boolean |
isFooterVisible()
Gets value indicating that a footer placeholder is present.
|
boolean |
isSlideNumberVisible()
Gets value indicating that a page number placeholder is present.
|
void |
setDateTimeText(java.lang.String text)
Sets text to slide date-time placeholder.
|
void |
setDateTimeVisibility(boolean isVisible)
Changes slide date-time placeholder visibility.
|
void |
setFooterText(java.lang.String text)
Sets text to slide footer placeholder.
|
void |
setFooterVisibility(boolean isVisible)
Changes slide footer placeholder visibility.
|
void |
setSlideNumberVisibility(boolean isVisible)
Changes slide page number placeholder visibility.
|
boolean isFooterVisible()
Gets value indicating that a footer placeholder is present.
Read boolean
.
boolean isSlideNumberVisible()
Gets value indicating that a page number placeholder is present.
Readboolean
.
boolean isDateTimeVisible()
Gets value indicating that a date-time placeholder is present.
Readboolean
.
void setFooterVisibility(boolean isVisible)
Changes slide footer placeholder visibility.
isVisible
- true - makes a footer placeholder visible, otherwise - hides it.void setSlideNumberVisibility(boolean isVisible)
Changes slide page number placeholder visibility.
isVisible
- true - makes a page number placeholder visible, otherwise - hides it.void setDateTimeVisibility(boolean isVisible)
Changes slide date-time placeholder visibility.
isVisible
- true - makes a date-time placeholder visible, otherwise - hides it.void setFooterText(java.lang.String text)
Sets text to slide footer placeholder.
text
- Text to set.void setDateTimeText(java.lang.String text)
Sets text to slide date-time placeholder.
text
- Text to set.