ValeMetricsHeadingCount

The ValeMetricsHeadingCount class represents counts for the headings in a document.

Definition

Source Code

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

class ValeMetricsHeadingCount {
    [int] $H1
    [int] $H2
    [int] $H3
    [int] $H4
    [int] $H5
    [int] $H6
}

An instance of the ValeMetricsHeadingCount class represents counts for the headings in a document.

Examples

Constructors

ValeMetricsHeadingCount()
Initializes a new instance of the ValeMetricsHeadingCount class.

Properties

H1
Represents the number of first-level headings in the prose.
H2
Represents the number of first-level headings in the prose.
H3
Represents the number of first-level headings in the prose.
H4
Represents the number of first-level headings in the prose.
H5
Represents the number of first-level headings in the prose.
H6
Represents the number of first-level headings in the prose.
Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)