[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

fileRecoveryPr (File Recovery Properties)

This element defines properties that track the state of the workbook file, such as whether the file was saved during a crash, or whether it should be opened in auto-recover mode.

Parent Elements

workbook3.2.27)

 

Attributes

Description

autoRecover (Auto Recover)

Specifies a boolean value that indicates whether the file is mark for auto-recovery. Applications typically mark files for auto-recover following a crash.

 

A value of on, 1, or true indicates the file is marked for auto-recover.

 

A value of off, 0, or false indicates the file is not marked for auto-recover.

 

The default value for this attribute is /false.

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

crashSave (Crash Save)

Specifies a boolean value that indicates whether the application last saved the workbook file after a crash.

 

A value of on, 1, or true indicates the workbook was last saved after a crash.

 

A value of off, 0, or false indicates was not last saved as part of a crash.

 

The default value for this attribute is false.

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

dataExtractLoad (Data Extract Load)

Specifies a boolean value that indicates whether the application last opened the workbook for data recovery.

 

A value of on, 1, or true indicates the workbook was last opened for data recovery.

 

A value of off, 0, or false indicates was not last opened for data recovery.

 

The default value for this attribute is true.

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

repairLoad (Repair Load)

Specifies a boolean value that indicates whether the application last opened the workbook in safe or repair mode.

 

A value of on, 1, or true indicates the workbook was last opened in safe or repair mode.

 

A value of off, 0, or false indicates the workbook was last opened without problems.

 

The default value for this attribute is false.

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_FileRecoveryPr">

   <attribute name="autoRecover" type="xsd:boolean" use="optional" default="true"/>

   <attribute name="crashSave" type="xsd:boolean" use="optional" default="false"/>

   <attribute name="dataExtractLoad" type="xsd:boolean" use="optional" default="false"/>

   <attribute name="repairLoad" type="xsd:boolean" use="optional" default="false"/>

</complexType>