Table of Contents

Property PageRange

Namespace
LMKit.Document.Conversion
Assembly
LM-Kit.NET.dll

PageRange

Gets or sets the 1-based page range to convert (e.g. "1-5, 7, 9-12"). Use null, an empty string, or "*" to convert every page. Invalid page numbers are silently ignored.

public string PageRange { get; set; }

Property Value

string

Examples

// Pages 1 through 5, page 7, and pages 10 through 12.
var options = new DocumentToMarkdownOptions { PageRange = "1-5, 7, 10-12" };
Share