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
isDesignModeboolIndicates whether the event is occurring in design mode.
namestringThe name of the element being defined.
valueobjectThe value of the element being defined.
progressPercentintThe progress percentage of the element definition.
Properties
AssociatedTableRow
Gets the associated table row for the element being defined.
public ITableRow? AssociatedTableRow { get; }
Property Value
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
Name
Gets or sets the name of the element being defined.
public string Name { get; set; }
Property Value
ProgressPercent
Gets or sets the progress percentage of the element definition.
public int ProgressPercent { get; set; }
Property Value
Suppress
Gets or sets a value indicating whether the element definition should be suppressed.
public bool Suppress { get; set; }
Property Value
Value
Gets or sets the value of the element being defined.
public object? Value { get; set; }