PageCollectionExtensions.AddBatesNumbering

AddBatesNumbering(this PageCollection, Action<BatesNArtifact>)

Adds Bates numbering to each page in the given page collection using the specified action to configure the BatesNArtifact.

public static void AddBatesNumbering(this PageCollection pageCollection, 
    Action<BatesNArtifact> action)
ParameterTypeDescription
pageCollectionPageCollectionThe collection of pages to which the Bates numbering will be added.
actionAction`1An action to configure the BatesNArtifact before adding it to each page.

See Also


AddBatesNumbering(this PageCollection, BatesNArtifact)

Adds the specified Bates numbering artifact to each page in the given page collection.

public static void AddBatesNumbering(this PageCollection pageCollection, BatesNArtifact artifact)
ParameterTypeDescription
pageCollectionPageCollectionThe collection of pages to which the Bates numbering artifact will be added.
artifactBatesNArtifactThe BatesNArtifact instance to be added to each page.

See Also