SlideElement Class
Serves as the base class for presentation slide elements that can override themes and color mappings.
Declaration
public abstract class SlideElement extends SlideBase
Inherited Members
Inheritance
SlideElement(String name)
Initializes a new instance of the SlideElement class with specified settings.
Declaration
public SlideElement(String name)
Parameters
| Name | Type | Description |
|---|---|---|
| name | String | The element name. |
Methods
deepClone() Method
Clones the current SlideElement instance.
Declaration
public SlideElement deepClone()
Returns
| Type | Description |
|---|---|
SlideElement |
The cloned |
getColorMapOverride() Method
Returns the color map that overrides the master color map.
Declaration
public ColorMap getColorMapOverride()
Returns
| Type | Description |
|---|---|
| ColorMap | A ColorMap object. |
getShowMasterPlaceholderAnimations() Method
Returns whether the slide element displays animations for master placeholders.
Declaration
public boolean getShowMasterPlaceholderAnimations()
Returns
| Type | Description |
|---|---|
| boolean |
|
getShowMasterShapes() Method
Returns whether the slide element displays shapes from the master slide.
Declaration
public boolean getShowMasterShapes()
Returns
| Type | Description |
|---|---|
| boolean |
|
getThemeOverride() Method
Returns the theme override for the slide element.
Declaration
public ThemeOverride getThemeOverride()
Returns
| Type | Description |
|---|---|
| ThemeOverride | A ThemeOverride object that overrides the master theme. |
setColorMapOverride(ColorMap value) Method
Sets the color map that overrides the master color map.
Declaration
public void setColorMapOverride(ColorMap value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | ColorMap | A ColorMap object. |
setShowMasterPlaceholderAnimations(boolean value) Method
Sets whether the slide element displays animations for master placeholders.
Declaration
public void setShowMasterPlaceholderAnimations(boolean value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | boolean |
|
setShowMasterShapes(boolean value) Method
Sets whether the slide element displays shapes from the master slide.
Declaration
public void setShowMasterShapes(boolean value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | boolean |
|
setThemeOverride(ThemeOverride value) Method
Sets the theme override for the slide element.
Declaration
public void setThemeOverride(ThemeOverride value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | ThemeOverride | A ThemeOverride object that overrides the master theme. |