Table of Contents

Class AutoDefineElementEventArgs

Namespace
combit.Reporting
Assembly
combit.ListLabel31.CrossPlatform.dll

Provides data for the AutoDefineElement event.

public sealed class AutoDefineElementEventArgs : EventArgs
Inheritance
AutoDefineElementEventArgs
Inherited Members

Constructors

AutoDefineElementEventArgs(bool, string, object?, int)

Initializes a new instance of the AutoDefineElementEventArgs class.

public AutoDefineElementEventArgs(bool isDesignMode, string name, object? value, int progressPercent)

Parameters

isDesignMode bool

Indicates whether the event is occurring in design mode.

name string

The name of the element being defined.

value object

The value of the element being defined.

progressPercent int

The progress percentage of the element definition.

Properties

AssociatedTableRow

Gets the associated table row for the element being defined.

public ITableRow? AssociatedTableRow { get; }

Property Value

ITableRow

FieldType

Gets or sets the field type of the element being defined.

public LlFieldType FieldType { get; set; }

Property Value

LlFieldType

IsDesignMode

Gets a value indicating whether the event is occurring in design mode.

public bool IsDesignMode { get; }

Property Value

bool

Name

Gets or sets the name of the element being defined.

public string Name { get; set; }

Property Value

string

ProgressPercent

Gets or sets the progress percentage of the element definition.

public int ProgressPercent { get; set; }

Property Value

int

Suppress

Gets or sets a value indicating whether the element definition should be suppressed.

public bool Suppress { get; set; }

Property Value

bool

Value

Gets or sets the value of the element being defined.

public object? Value { get; set; }

Property Value

object