Table of Contents

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

parent ListLabel

The parent ListLabel instance.

Properties

Count

Gets the number of export options.

public int Count { get; }

Property Value

int

this[string]

Gets or sets the export option value associated with the specified key.

public string this[string option] { get; set; }

Parameters

option string

The 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

option LlExportOption

The 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

ICollection

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

option string

The export option key as a string.

value string

The export option value.

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

option LlExportOption

The export option as an LlExportOption enum.

value string

The 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

option string

The export option key as a string.

Returns

bool

true if the option exists; otherwise, false.

Contains(LlExportOption)

Determines whether the specified export option exists in the export options.

public bool Contains(LlExportOption option)

Parameters

option LlExportOption

The export option as an LlExportOption enum.

Returns

bool

true if the option exists; otherwise, false.