wpf-devexpress-dot-xpf-dot-printing-5363034e.md
Lists the report control types assigned when exporting a report.
Namespace : DevExpress.Xpf.Printing
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public enum TargetType
Public Enum TargetType
| Name | Description |
|---|---|
None |
Assumes that an object’s value shouldn’t be exported. This object is skipped when exporting, but if it has child elements, their values will still be exported, depending on their ExportSettings.TargetType.
|
| Text |
An object’s value is treated as Text when being exported.
|
| Panel |
An object is treated as Panel when being exported.
|
| Image |
An object’s value is treated as Image when being exported.
|
| Boolean |
An object’s value is treated as Boolean when being exported.
|
| PageNumber |
An object’s value is treated as a Page Number when being exported.
|
| ProgressBar |
An object is treated as Progress Bar when being exported.
|
| TrackBar |
An object is treated as Track Bar when being exported.
|
A TargetType object is returned by the ExportSettings.TargetType property.
See Also