FileRecoveryProperties.AutoRecover Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Auto Recover
Represents the following attribute in the schema: autoRecover
[DocumentFormat.OpenXml.SchemaAttr(0, "autoRecover")]
public DocumentFormat.OpenXml.BooleanValue AutoRecover { get; set; }
public DocumentFormat.OpenXml.BooleanValue AutoRecover { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "autoRecover")]
public DocumentFormat.OpenXml.BooleanValue? AutoRecover { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("autoRecover")]
public DocumentFormat.OpenXml.BooleanValue? AutoRecover { get; set; }
public DocumentFormat.OpenXml.BooleanValue? AutoRecover { get; set; }
member this.AutoRecover : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "autoRecover")>]
member this.AutoRecover : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr("autoRecover")>]
member this.AutoRecover : DocumentFormat.OpenXml.BooleanValue with get, set
Public Property AutoRecover As BooleanValue
Property Value
Returns BooleanValue.
- Attributes
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
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
data type.