Interface IDesignBlock
- All Superinterfaces:
- ICompilationSupport,- IDesignContentComponent,- IDesignElement,- ILocationSupport,- IPropertiesSupport,- ISelectionSupport,- IWidget,- IWritable,- IXmlSerializable,- Serializable
- All Known Subinterfaces:
- IDesignCellBlock,- IDesignFormBlock,- IDesignLineBlock,- IDesignSectionBlock,- IDesignTableBlock
Interface to describe block object.
- Since:
- 2.0, 01/12/2010
- Version:
- 1.0
- Author:
- vlygeros
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceSpecific event types.
- 
Method SummaryModifier and TypeMethodDescriptioncreateDesignBlock(IBlockDefinition blockDefinition) Creates a design block by specifying its definition.createDesignBlock(String name) Creates a design block by specifying its name.createDesignBlockAfter(IBlockDefinition blockDefinition, IDesignContentComponent previousSibling) Creates a design block by specifying its definition.createDesignBlockAfter(String name, IDesignContentComponent previousSibling) Creates a design block by specifying its name.createDesignBlockBefore(IBlockDefinition blockDefinition, IDesignContentComponent nextSibling) Creates a design block by specifying its definition.createDesignBlockBefore(String name, IDesignContentComponent nextSibling) Creates a design block by specifying its name.createDesignComponent(IComponentDefinition componentDefinition) Creates a design component by specifying its definition.createDesignComponent(String name) Creates a design component by specifying its name.createDesignComponentAfter(IComponentDefinition componentDefinition, IDesignContentComponent previousSibling) Creates a design component by specifying its definition.createDesignComponentAfter(String name, IDesignContentComponent previousSibling) Creates a design component by specifying its name.createDesignComponentBefore(IComponentDefinition componentDefinition, IDesignContentComponent nextSibling) Creates a design component by specifying its definition.createDesignComponentBefore(String name, IDesignContentComponent nextSibling) Creates a design component by specifying its name.Gets the internal block definition.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.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- 
createDesignBlockCreates a design block by specifying its name.- Parameters:
- name- The name of the block to create.
- Returns:
- A IDesignBlockobject.
 
- 
createDesignBlockBeforeCreates a design block by specifying its name.- Parameters:
- name- The name of the block to create.
- nextSibling- The next sibling component.
- Returns:
- A IDesignBlockobject.
 
- 
createDesignBlockAfterCreates a design block by specifying its name.- Parameters:
- name- The name of the block to create.
- previousSibling- The previous sibling component.
- Returns:
- A IDesignBlockobject.
 
- 
createDesignBlockCreates a design block by specifying its definition.- Parameters:
- blockDefinition- The specific block definition to use.
- Returns:
- A IDesignBlockobject.
 
- 
createDesignBlockBeforeIDesignBlock createDesignBlockBefore(IBlockDefinition blockDefinition, IDesignContentComponent nextSibling) Creates a design block by specifying its definition.- Parameters:
- blockDefinition- The specific block definition to use.
- nextSibling- The next sibling component.
- Returns:
- A IDesignBlockobject.
 
- 
createDesignBlockAfterIDesignBlock createDesignBlockAfter(IBlockDefinition blockDefinition, IDesignContentComponent previousSibling) Creates a design block by specifying its definition.- Parameters:
- blockDefinition- The specific block definition to use.
- previousSibling- The previous sibling component.
- Returns:
- A IDesignBlockobject.
 
- 
createDesignComponentCreates a design component by specifying its name.- Parameters:
- name- The name of the component to create.
- Returns:
- A IDesignComponentobject.
 
- 
createDesignComponentBeforeCreates a design component by specifying its name.- Parameters:
- name- The name of the component to create.
- nextSibling- The next sibling component.
- Returns:
- A IDesignComponentobject.
 
- 
createDesignComponentAfterCreates a design component by specifying its name.- Parameters:
- name- The name of the component to create.
- previousSibling- The previous sibling component.
- Returns:
- A IDesignComponentobject.
 
- 
createDesignComponentCreates a design component by specifying its definition.- Parameters:
- componentDefinition- The specific component definition to use.
- Returns:
- A IDesignComponentobject.
 
- 
createDesignComponentBeforeIDesignComponent createDesignComponentBefore(IComponentDefinition componentDefinition, IDesignContentComponent nextSibling) Creates a design component by specifying its definition.- Parameters:
- componentDefinition- The specific component definition to use.
- nextSibling- The next sibling component.
- Returns:
- A IDesignComponentobject.
 
- 
createDesignComponentAfterIDesignComponent createDesignComponentAfter(IComponentDefinition componentDefinition, IDesignContentComponent previousSibling) Creates a design component by specifying its definition.- Parameters:
- componentDefinition- The specific component definition to use.
- previousSibling- The previous sibling component.
- Returns:
- A IDesignComponentobject.
 
- 
getBlockDefinitionIBlockDefinition getBlockDefinition()Gets the internal block definition.- Returns:
- A IBlockDefinitionobject.
 
 
-