IBM BPM, V8.0.1, All platforms > Authoring services in Integration Designer > Developing monitor models > What are monitor models? > Monitor XML schema definition (monitor.xsd) > XML schema (monitor.xsd) description > Visual model elements

HideShapesType

HideShapesType defines the action used to specify that a set of Scalable Vector Graphics (SVG) elements be hidden at run time based on some condition.

Elements

Name Min-max Description
shapeSet 1 - n One or more shapeSets that define the SVG elements to be shown or hidden by this action. If the condition evaluates to true, the elements will be hidden. If the condition evaluates to false, the elements will be shown.

Attributes

None

Restrictions

  • All restrictions for ActionType apply to HideShapesType.

  • All shapeSet refs must be in the set of ids for shapeSets in this same visualization.

Schema definition

<xsd:complexType name="HideShapesType">
    <xsd:complexContent>
        <xsd:extension base="mon:ActionType">
            <xsd:sequence>
                <!-- String value must be the name of a shape set 
                      defined in the <shapeSets> element -->
                <xsd:element name="shapeSet" type="mon:ShapeSetRefType" 
                      minOccurs="1" maxOccurs="unbounded"/>
            </xsd:sequence>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

Visual model elements