<signatureline>
(Digital Signature Line)
This element specifies a signature line in a document. A signature line provides a visual representation of a signature in a document that is digitally signed. The signature line element indicates that the VML shape in which it appears acts as that visual representation. Typically, the VML shape is an image.
<v:shape ... > <v:imagedata ... /> <o:signatureline v:ext="edit" id="{11979195-DE54-414B-ABD6-5F63607C648B}" provid="{00000000-0000-0000-0000-000000000000}" o:suggestedsigner="John Doe" o:suggestedsigner2="Manager" o:suggestedsigneremail=johndoe@example.com allowcomments="t" issignatureline="t"/> </v:shape>
The signature line in the document might look like this:
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies an optional string that is used to store additional information about the digital signature. Default is no value. [: Some digital signature software stores, for example, server and region information with the signature. ] [Example: <o:signatureline ... o:addlxml="..."> </o:signatureline> The possible values for this attribute are defined by the XML Schema string datatype. |
|
Specifies whether the user can attach comments to the signature line at signing time. Default is [Example: <o:signatureline ... allowcomments="true"> </o:signatureline> The possible values for this attribute are defined by the ST_TrueFalse simple type (§6.2.3.23). |
Namespace: urn:schemas-microsoft-com:vml |
Specifies an optional value that indicates how applications that implement VML should interpret extensions not defined as part of the original specification of core VML. [: This part of the original VML specification is included to assist applications that leverage existing VML support in implementing the Office Open XML Format. ] The possible values for this attribute are defined by the ST_Ext simple type (§6.1.3.3). |
|
Specifies a unique ID for the signature line. Default is no value. [Example: <o:signatureline ... id="{11979195-DE54-414B-ABD6-5F63607C648B}"> </o:signatureline> The possible values for this attribute are defined by the ST_Guid simple type (§6.2.3.12). |
|
Specifies whether the image is a signature line. Default is [Example: <o:signatureline ... issignatureline="true"> </o:signatureline> The possible values for this attribute are defined by the ST_TrueFalse simple type (§6.2.3.23). |
|
Specifies a unique ID identifying which signature provider created the signature line. Default is no value. [ The GUID is typically the CLSID of the provider COM add-in. ] [Example: <o:signatureline ... provid="{00000000-0000-0000-0000-000000000000}"> </o:signatureline> The possible values for this attribute are defined by the ST_Guid simple type (§6.2.3.12). |
|
Specifies whether the signed signature line image generated should include the date of signing. Default is [Example: <o:signatureline ... showsigndate="false"> </o:signatureline> The possible values for this attribute are defined by the ST_TrueFalse simple type (§6.2.3.23). |
|
Specifies text shown to the user at signing time. Default is no value. [Example: <o:signatureline ... o:signinginstructions="Sign here"> </o:signatureline> The possible values for this attribute are defined by the XML Schema string datatype. |
|
Specifies whether there is data set in the [Example: <o:signatureline ... signinginstructionsset="true"> </o:signatureline> The possible values for this attribute are defined by the ST_TrueFalse simple type (§6.2.3.23). |
|
Specifies the URL for downloading the signature provider. Default is no value. [Example: <o:signatureline ... o:sigprovurl="http://www.example.com"> </o:signatureline> The possible values for this attribute are defined by the XML Schema string datatype. |
|
Specifies the first line of information of who should sign the signature line. Default is no value. [Example: <o:signatureline ... o:suggestedsigner="John Doe"> </o:signatureline> The possible values for this attribute are defined by the XML Schema string datatype. |
|
Specifies the second line of information of who should sign the signature line. Default is no value. [Example: <o:signatureline ... o:suggestedsigner2="Title"> </o:signatureline> The possible values for this attribute are defined by the XML Schema string datatype. |
|
Specifies the e-mail address of who should sign the signature line. Default is no value. [Example: <o:signatureline ... o:suggestedsigneremail="johndoe@example.com"> </o:signatureline> The possible values for this attribute are defined by the XML Schema string datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_SignatureLine">
<attributeGroup ref="v:AG_Ext"/>
<attribute name="issignatureline" type="ST_TrueFalse"/>
<attribute name="id" type="ST_Guid"/>
<attribute name="provid" type="ST_Guid"/>
<attribute name="signinginstructionsset" type="ST_TrueFalse"/>
<attribute name="allowcomments" type="ST_TrueFalse"/>
<attribute name="showsigndate" type="ST_TrueFalse"/>
<attribute name="suggestedsigner" type="xsd:string" form="qualified"/>
<attribute name="suggestedsigner2" type="xsd:string" form="qualified"/>
<attribute name="suggestedsigneremail" type="xsd:string" form="qualified"/>
<attribute name="signinginstructions" type="xsd:string"/>
<attribute name="addlxml" type="xsd:string"/>
<attribute name="sigprovurl" type="xsd:string"/>
</complexType>