ReadModeInkLockDown.UseActualPages 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.
Use Actual Pages, Not Virtual Pages
Represents the following attribute in the schema: w:actualPg
[DocumentFormat.OpenXml.SchemaAttr(23, "actualPg")]
public DocumentFormat.OpenXml.OnOffValue UseActualPages { get; set; }
public DocumentFormat.OpenXml.OnOffValue UseActualPages { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(23, "actualPg")]
public DocumentFormat.OpenXml.OnOffValue? UseActualPages { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("w:actualPg")]
public DocumentFormat.OpenXml.OnOffValue? UseActualPages { get; set; }
public DocumentFormat.OpenXml.OnOffValue? UseActualPages { get; set; }
member this.UseActualPages : DocumentFormat.OpenXml.OnOffValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr(23, "actualPg")>]
member this.UseActualPages : DocumentFormat.OpenXml.OnOffValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr("w:actualPg")>]
member this.UseActualPages : DocumentFormat.OpenXml.OnOffValue with get, set
Public Property UseActualPages As OnOffValue
Property Value
Returns EnumValue<T>.
- Attributes
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
Specifies if applications shall render this WordprocessingML document with actual pages, not virtual pages. Actual pages are pages rendered as they will be printed.
A value of true
specifies that the given WordprocessingML document's pages will be rendered as they are printed, and the w
, h
, and fontSz
attributes shall be ignored. A value of false
specifies that the given WordprocessingML document's pages shall be rendered as virtual pages using the other attributes on this element.
Consider a WordprocessingML document that shall be displayed using virtual pages. This state is specified using the following WordprocessingML in the document settings:
<w:readModeInkLockDown w:w="692" w:h="986" w:fontSz="95" w:actualPg="0" />
The actualPage
attribute is equal to 0
specifying that the given WordprocessingML document shall be rendered by conforming hosting applications using virtual pages.
The possible values for this attribute are defined by the ST_OnOff
simple type.