Show / Hide Table of Contents

Class Document.Types.PageAnchor.Types.PageRef

Represents a weak reference to a page element within a document.

Inheritance
System.Object
Document.Types.PageAnchor.Types.PageRef
Implements
IMessage<Document.Types.PageAnchor.Types.PageRef>
System.IEquatable<Document.Types.PageAnchor.Types.PageRef>
IDeepCloneable<Document.Types.PageAnchor.Types.PageRef>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class PageRef : IMessage<Document.Types.PageAnchor.Types.PageRef>, IEquatable<Document.Types.PageAnchor.Types.PageRef>, IDeepCloneable<Document.Types.PageAnchor.Types.PageRef>, IBufferMessage, IMessage

Constructors

PageRef()

Declaration
public PageRef()

PageRef(Document.Types.PageAnchor.Types.PageRef)

Declaration
public PageRef(Document.Types.PageAnchor.Types.PageRef other)
Parameters
Type Name Description
Document.Types.PageAnchor.Types.PageRef other

Properties

LayoutId

Optional. The [Page.Layout.id][google.cloud.documentai.v1beta2.Document.Page.Layout.id] on the page that this element references. If [LayoutRef.type][] is specified this id must also be specified.

Declaration
public string LayoutId { get; set; }
Property Value
Type Description
System.String

LayoutType

Optional. The type of the layout element that is being referenced. If not specified the whole page is assumed to be referenced.

Declaration
public Document.Types.PageAnchor.Types.PageRef.Types.LayoutType LayoutType { get; set; }
Property Value
Type Description
Document.Types.PageAnchor.Types.PageRef.Types.LayoutType

Page

Required. Index into the [Document.pages][google.cloud.documentai.v1beta2.Document.pages] element

Declaration
public long Page { get; set; }
Property Value
Type Description
System.Int64
Back to top