Package com.microstrategy.web.app.beans
Interface FormatColorLinesTabBean
-
- All Superinterfaces:
AppComponent,FormatTabBean,TabBean,Transformable,ViewBeanParserBean,WebComponent
public interface FormatColorLinesTabBean extends FormatTabBean
Interface that represents the bean which will allow users to modify Color and Lines formatting properties on a given target object, showing its options as aTabBeanin aTabManagerBeancomponent.- Since:
- MicroStrategy Web 8.0.0
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.app.beans.AppComponent
COMPONENT_POSITION_NOT_INITIALIZED
-
Fields inherited from interface com.microstrategy.web.app.beans.TabBean
CACHED, FETCH, TAB_REPRESENTED_NOT_SPECIFIED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBackgroundColor()Get the value specified for the background color setting for the selected target object(s).java.lang.StringgetBottomBorderColor()Get the value specified for the bottom border color setting for the selected target object(s).intgetBottomBorderStyle()Get the value specified for the bottom border style setting for the selected target object(s).ShortcutListgetColorPicker()Get the structure where the color picker has been saved, for having it renderedjava.lang.StringgetLeftBorderColor()Get the value specified for the left border color setting for the selected target object(s).intgetLeftBorderStyle()Get the value specified for the left border style setting for the selected target object(s).java.lang.StringgetRightBorderColor()Get the value specified for the right border color setting for the selected target object(s).intgetRightBorderStyle()Get the value specified for the right border style setting for the selected target object(s).java.lang.StringgetTopBorderColor()Get the value specified for the top border color setting for the selected target object(s).intgetTopBorderStyle()Get the value specified for the top border style setting for the selected target object(s).voidsetColorPicker(ShortcutList colorPicker)-
Methods inherited from interface com.microstrategy.web.app.beans.AppComponent
getAppContext, getDescriptor, getDescriptor, getEventManager, getExtraInput, getExtraUrl, getLeft, getResultFilterMode, getTop, isDialog, isForcedChildrenStateSaving, isModal, isModalOpen, isOpen, setExtraInput, setExtraUrl, setForcedChildrenStateSaving, setHasJustOpened, setIsDialog, setIsModal, setIsOpen, setLeft, setTop
-
Methods inherited from interface com.microstrategy.web.app.beans.FormatTabBean
getSelectedTypes, getTargetAxis, getTargetLevel, getTargetPosition, setSelectedTypes, setTargetAxis, setTargetLevel, setTargetPosition
-
Methods inherited from interface com.microstrategy.web.app.beans.TabBean
getEnabledCmdId, getFeatures, getHelpTopic, getHelpType, getRequireSingleSelector, getSupportedTypes, getSwitchMode, getTabId, getTabLabel, getTabLabelId, getTabManager, getTabName, getTabRepresented, getViewBean, isAvailable, isPartialUpdate, setEnabledCmdId, setFeatures, setHelpTopic, setHelpType, setPartialUpdate, setRequireSingleSelector, setSupportedTypes, setSwitchMode, setTabLabel, setTabLabelId, setTabName, setTabRepresented
-
Methods inherited from interface com.microstrategy.web.beans.Transformable
addTransform, addTransformByClass, addTransformByStyle, addTransformByStyle, clearTransforms, getBeanContext, getMessageString, getMyTransformInstances, getTransformInstance, getTransformInstance, getTransformInstances, getType, hasTransform, hasTransform, invalidateTransformCache, setBeanContext, transform, transform
-
Methods inherited from interface com.microstrategy.web.app.beans.ViewBeanParserBean
getActiveElementIndex, getActiveViewKey, getTemplateElementList, getViewBean, setActiveElementIndex, setActiveViewKey
-
Methods inherited from interface com.microstrategy.web.beans.WebComponent
addChild, addChildStateInfo, addChildStateInfo, collectData, collectMinimalData, generateOutput, getBeanContext, getChild, getChild, getChildByClass, getChildByType, getChildCount, getChildrenByClass, getDefaultStateLevel, getFeaturesManager, getMaximumStateLevel, getName, getOutputFormat, getParent, getPath, getPersistMode, getRenderingFilter, getRoot, getTargetBean, getTargetBeanPath, getWebEvent, getWebEvent, getWebEventHandler, getXMLStatus, handleRequest, hasChanged, hasJustOpened, initBean, invalidateChildrenState, isBeanContextEmpty, isFeatureAvailable, prepareForReuse, removeChild, removeChild, searchChild, setBeanContext, setBeanContext, setChanged, setChanged, setDefaultStateLevel, setFeaturesManager, setName, setOutputFormat, setParent, setPersistMode, setRenderingFilter, setTargetBean, setTargetBeanPath, setWebEventHandler
-
-
-
-
Method Detail
-
getColorPicker
ShortcutList getColorPicker()
Get the structure where the color picker has been saved, for having it rendered- Returns:
ShortcutListinstance with the information about how the color picker was configured.
-
setColorPicker
void setColorPicker(ShortcutList colorPicker)
- Parameters:
colorPicker- The colorPicker to set.
-
getBackgroundColor
java.lang.String getBackgroundColor()
Get the value specified for the background color setting for the selected target object(s).- Returns:
- the value of the background color formatting setting of the current selected target object(s), a value with RGB format.
-
getTopBorderColor
java.lang.String getTopBorderColor()
Get the value specified for the top border color setting for the selected target object(s).- Returns:
- the value of the top border color formatting setting of the current selected target object(s), a value with RGB format.
-
getTopBorderStyle
int getTopBorderStyle()
Get the value specified for the top border style setting for the selected target object(s).- Returns:
- the value of the top border style formatting setting of the current selected target object(s).
-
getLeftBorderColor
java.lang.String getLeftBorderColor()
Get the value specified for the left border color setting for the selected target object(s).- Returns:
- the value of the left border color formatting setting of the current selected target object(s), a value with RGB format.
-
getLeftBorderStyle
int getLeftBorderStyle()
Get the value specified for the left border style setting for the selected target object(s).- Returns:
- the value of the left border style formatting setting of the current selected target object(s).
-
getRightBorderColor
java.lang.String getRightBorderColor()
Get the value specified for the right border color setting for the selected target object(s).- Returns:
- the value of the right border color formatting setting of the current selected target object(s), a value with RGB format.
-
getRightBorderStyle
int getRightBorderStyle()
Get the value specified for the right border style setting for the selected target object(s).- Returns:
- the value of the right border style formatting setting of the current selected target object(s).
-
getBottomBorderColor
java.lang.String getBottomBorderColor()
Get the value specified for the bottom border color setting for the selected target object(s).- Returns:
- the value of the bottom border color formatting setting of the current selected target object(s), a value with RGB format.
-
getBottomBorderStyle
int getBottomBorderStyle()
Get the value specified for the bottom border style setting for the selected target object(s).- Returns:
- the value of the bottom border style formatting setting of the current selected target object(s).
-
-