Creatables

The Creatables element is the root of the creatables.conf file.

The Creatables element contains two levels of Category elements.

Table 1. Creatables element attributes
Attribute Options
version Optional version information.
xmlns:xsi Standard XML attribute for schema namespace.
xsi:noNamespaceSchemaLocation Standard XML attribute for schema location.

Syntax

<Creatables>
  <Category attributes >
    <Category attributes >
      <New attributes />
      <File attributes />
      <Directory attributes />
      <Wizard attributes />
    </Category>
  </Category>
</Creatables> 

Child elements

The Creatables element may contain the following child elements:

  1. One or more Category elements.

Example

<Creatables version="2.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="https://4js.com/ns/gst/2.50/creatables.xsd">
  <Category index="5" label="Design (MDA)" name="MDA" icon="document_4ba" >        
    <Category index="40" label="Managed Code" name="ManagedCode">             
      <New  index="10" 
            name="FDModuleForm" 
            action="FDNew"                                         
            label="Module Form (.4fdm)" 
            icon="document_4fdm" 
            description="Create an empty module in Form Designer"          
            extension="4fdm"/>        
    </Category>    
  </Category> 
</Creatables>