Skip to main content
A newer version of this page is available. .

LinkBase.SkipArea Property

Gets or sets report areas that should be skipped.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v19.2.Core.dll

Declaration

[Browsable(true)]
[DefaultValue(BrickModifier.None)]
public BrickModifier SkipArea { get; set; }

Property Value

Type Default Description
BrickModifier **None**

Report areas that should be skipped.

Available values:

Name Description
None

This value doesn’t represent any section of the document. It is used when specifying the LinkBase.SkipArea property, to specify that no section should be skipped when creating a document. Note that you can’t create a document using this brick modifier value.

Detail

Represents the detail section of the document.

DetailHeader

Represents the detail header section of the document.

DetailFooter

Represents the detail footer section of the document.

ReportHeader

Represents the report header section of the document.

ReportFooter

Represents the report footer section of the document.

MarginalHeader

Represents the marginal page header section of the document.

MarginalFooter

Represents the marginal page footer section of the document.

InnerPageHeader

Represents the inner page header section of the document.

InnerPageFooter

Represents the inner page footer section of the document.

Remarks

You can assign several report areas to this property value using a bitwise “or”. If an area is assigned to the property, the corresponding creation event does not occur. The appropriate values are contained in the BrickModifier enumeration.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SkipArea property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also