[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.RepeatSetting

RepeatSetting Class

Represents the repeat settings of a range.

Use this class to associate an IRange with title or tail rows and columns that can be repeated when the range is processed for pagination.

Inheritance
RepeatSetting
Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public class RepeatSetting
Public Class RepeatSetting
Examples
IRange range = worksheet.Range["A1:D20"];
RepeatSetting repeatSetting = new RepeatSetting();
repeatSetting.Range = range;
repeatSetting.TitleRowStart = 0;
repeatSetting.TitleRowEnd = 1;

Constructors

Name Description
RepeatSetting()

Properties

Name Description
Range

Gets or sets the range whose repeat settings are described by this instance.

TailColumnEnd

Gets or sets the end index of the columns that belong to the tail area of the range.

This value identifies the last tail column in the RepeatSetting. Tail columns are the columns at the end of the associated range that can be repeated during pagination.

TailColumnStart

Gets or sets the start index of the columns that belong to the tail area of the range.

This value identifies the first tail column in the RepeatSetting. Tail columns are the columns at the end of the associated range that can be repeated during pagination.

TailRowEnd

Gets or sets the end index of the rows that belong to the tail area of the range.

This value identifies the last tail row in the RepeatSetting. Tail rows are the rows at the end of the associated range that can be repeated during pagination.

TailRowStart

Gets or sets the start index of the rows that belong to the tail area of the range.

This value identifies the first tail row in the RepeatSetting. Tail rows are the rows at the end of the associated range that can be repeated during pagination.

TitleColumnEnd

Gets or sets the end index of the columns that are printed at the left of the page.

TitleColumnStart

Gets or sets the start index of the columns that belong to the title area of the range.

This value identifies the first title column in the RepeatSetting. Title columns are the columns at the left side of the associated range that can be repeated during pagination.

TitleRowEnd

Gets or sets the end index of the rows that are printed at the top of the page.

TitleRowStart

Gets or sets the start index of the rows that are the title of the range.