public abstract class BaseSlideHeaderFooterManager extends BaseHeaderFooterManager
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.
|
getParent_Immediate
public final boolean isFooterVisible()
Gets value indicating that a footer placeholder is present.
Read boolean
.
public final boolean isSlideNumberVisible()
Gets value indicating that a page number placeholder is present.
Readboolean
.
public final boolean isDateTimeVisible()
Gets value indicating that a date-time placeholder is present.
Readboolean
.
public final void setFooterVisibility(boolean isVisible)
Changes slide footer placeholder visibility.
isVisible
- true - makes a footer placeholder visible, otherwise - hides it.public final void setSlideNumberVisibility(boolean isVisible)
Changes slide page number placeholder visibility.
isVisible
- true - makes a page number placeholder visible, otherwise - hides it.public final void setDateTimeVisibility(boolean isVisible)
Changes slide date-time placeholder visibility.
isVisible
- true - makes a date-time placeholder visible, otherwise - hides it.public final void setFooterText(java.lang.String text)
Sets text to slide footer placeholder.
text
- Text to set.public final void setDateTimeText(java.lang.String text)
Sets text to slide date-time placeholder.
text
- Text to set.