Class ListLabelExportOptions
- Namespace
- combit.Reporting
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents export options for List & Label.
public class ListLabelExportOptions
- Inheritance
-
ListLabelExportOptions
- Inherited Members
Constructors
ListLabelExportOptions(ListLabel)
Initializes a new instance of the ListLabelExportOptions class with the specified parent.
public ListLabelExportOptions(ListLabel parent)
Parameters
parentListLabelThe parent ListLabel instance.
Properties
Count
Gets the number of export options.
public int Count { get; }
Property Value
this[string]
Gets or sets the export option value associated with the specified key.
public string this[string option] { get; set; }
Parameters
optionstringThe export option key as a string.
Property Value
- string
The export option value.
this[LlExportOption]
Gets or sets the export option value associated with the specified LlExportOption key.
public string this[LlExportOption option] { get; set; }
Parameters
optionLlExportOptionThe export option as an LlExportOption enum.
Property Value
- string
The export option value.
Keys
Gets a collection of all export option keys.
public ICollection Keys { get; }
Property Value
Methods
Add(string, string)
Adds an export option with the specified key and value. If the key already exists, it will be updated with the new value.
public void Add(string option, string value)
Parameters
Add(LlExportOption, string)
Adds an export option with the specified key and value. If the key already exists, it will be updated with the new value.
public void Add(LlExportOption option, string value)
Parameters
optionLlExportOptionThe export option as an LlExportOption enum.
valuestringThe export option value.
Clear()
Clears all export options.
public void Clear()
Contains(string)
Determines whether the specified option exists in the export options.
public bool Contains(string option)
Parameters
optionstringThe export option key as a string.
Returns
- bool
trueif the option exists; otherwise,false.
Contains(LlExportOption)
Determines whether the specified export option exists in the export options.
public bool Contains(LlExportOption option)
Parameters
optionLlExportOptionThe export option as an LlExportOption enum.
Returns
- bool
trueif the option exists; otherwise,false.