Interface IDesignCellBlock
- All Superinterfaces:
- ICompilationSupport,- IDesignBlock,- IDesignContentComponent,- IDesignElement,- ILocationSupport,- IPropertiesSupport,- ISelectionSupport,- IWidget,- IWritable,- IXmlSerializable,- Serializable
Interface to describe a line object inside a table.
- Since:
- 2.1, 02/03/2011
- Version:
- 1.0
- Author:
- vlygeros
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceSpecific event types.Nested classes/interfaces inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IDesignBlockIDesignBlock.SupportedEventTypes
- 
Method SummaryModifier and TypeMethodDescriptionCreates a section within a cell.createDesignSectionBlockAfter(IDesignContentComponent previousSibling) Creates a section within a cell.createDesignSectionBlockBefore(IDesignContentComponent nextSibling) Creates a section within a cell.Creates a table within a cell.createDesignTableBlockAfter(IDesignContentComponent previousSibling) Creates a table within a cell.createDesignTableBlockBefore(IDesignContentComponent nextSibling) Creates a table within a cell.voiddetachDesignSectionBlock(IDesignSectionBlock designSection) Detaches a design section from a cell.voiddetachDesignTableBlock(IDesignTableBlock designTable) Detaches a design table from a cell.Gets the design sectionsGets the design tablesintgetWidth()Gets the width of the cell in percent.voidsetWidth(int width) Sets the width of the cell in percent.Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.ICompilationSupportbeforeCompile, beforeMerge, compile, generateName, mergeMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IDesignBlockcreateDesignBlock, createDesignBlock, createDesignBlockAfter, createDesignBlockAfter, createDesignBlockBefore, createDesignBlockBefore, createDesignComponent, createDesignComponent, createDesignComponentAfter, createDesignComponentAfter, createDesignComponentBefore, createDesignComponentBefore, getBlockDefinitionMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IDesignElementallowRemove, delete, getContainer, getId, getLinkedDesignElementsGroupName, getUniqueGroupName, getUniqueName, isDirty, isEmbedded, isPersistent, isVolatile, setAllowRemove, setDirty, verifyMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.ILocationSupportgetDimension, getPoint, setDimension, setPointMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IPropertiesSupportgetDescription, getLabel, getName, setDescription, setLabel, setNameMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.ISelectionSupportdeselect, isSelected, selectMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.IWidgetafterInit, getParentBlock, getSysname, isHidden, refresh, render, setHidden, setParentBlock, setSysnameMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IXmlSerializableload, save
- 
Method Details- 
createDesignSectionBlockIDesignSectionBlock createDesignSectionBlock()Creates a section within a cell.- Returns:
- A IDesignSectionBlockobject.
 
- 
createDesignSectionBlockBeforeCreates a section within a cell.- Parameters:
- nextSibling- The next sibling section.
- Returns:
- A IDesignSectionBlockobject.
 
- 
createDesignSectionBlockAfterCreates a section within a cell.- Parameters:
- previousSibling- The previous sibling section.
- Returns:
- A IDesignSectionBlockobject.
 
- 
getDesignSectionBlocksCollection<IDesignSectionBlock> getDesignSectionBlocks()Gets the design sections- Returns:
- A java.util.Collection of IDesignSectionBlockobjects.
 
- 
detachDesignSectionBlockDetaches a design section from a cell.- Parameters:
- designSection- The- IDesignSectionBlockto detach.
 
- 
createDesignTableBlockIDesignTableBlock createDesignTableBlock()Creates a table within a cell.- Returns:
- A IDesignTableBlockobject.
 
- 
createDesignTableBlockBeforeCreates a table within a cell.- Parameters:
- nextSibling- The next sibling table.
- Returns:
- A IDesignTableBlockobject.
 
- 
createDesignTableBlockAfterCreates a table within a cell.- Parameters:
- previousSibling- The previous sibling table.
- Returns:
- A IDesignTableBlockobject.
 
- 
getDesignTableBlocksCollection<IDesignTableBlock> getDesignTableBlocks()Gets the design tables- Returns:
- A java.util.Collection of IDesignTableBlockobjects.
 
- 
detachDesignTableBlockDetaches a design table from a cell.- Parameters:
- designTable- The- IDesignTableBlockto detach.
 
- 
getWidthint getWidth()Gets the width of the cell in percent.- Returns:
- The width as an int value.
 
- 
setWidthvoid setWidth(int width) Sets the width of the cell in percent.- Parameters:
- width- The width in percent to set.
 
 
-