name Attribute (property Element)

Microsoft Office InfoPath

name Attribute (property Element)

Defines the name of the property.

Type

      xsd:string
    

Remarks

The name attribute is a required attribute of the property element. A fileType value of "ActiveX-CAB" identifies that the file is a .cab file added by the designer and indicates that the file should be managed by the ActiveX support features of the designer. The timestamp property identifies the latest version of the .cab file. The version information is used for automatically updating the file when the developer has a more recent version in the ActiveX ICT/CAB directory.

Example

The following are examples of the name attribute as it is used in the property element:

    <xsf:files>
      <xsf:file name="example.cab">
         <xsf:fileProperties>
            <xsf:property name="fileType" type="string" value="ActiveX-CAB" />
            <xsf:property name="timestamp" type="string" value="xyz" />
         </xsf:fileProperties>
      </xsf:file>
   </xsf:files>
</xsf:package>

  
    <xsf:package>
   <xsf:files>
      <xsf:file name="view_1.xsl">
         <xsf:fileProperties>
            <xsf:property
               name="lang" 
               type="string"
               value="1033"/>
         </xsf:fileProperties>
      </xsf:file>
   </xsf:files>
</xsf:package>