Class Control.Event
Represents an event that can be triggered by a control.
Inherited Members
Namespace: DataWeb.Data
Assembly: DataWeb.Core.dll
Syntax
public class Control.Event
Properties
Condition
The condition that must be met for the event to be triggered.
Declaration
public EventCondition? Condition { get; set; }
Property Value
Type | Description |
---|---|
EventCondition? |
IsKeepValueOnHidden
Indicates whether the value of the control should be kept when it is hidden.
Declaration
public bool IsKeepValueOnHidden { get; set; }
Property Value
Type | Description |
---|---|
bool |
ReferenceNames
The names of the controls that the event references.
Declaration
public List<string> ReferenceNames { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
ReferenceValues
The values of the controls that the event references.
Declaration
public List<string> ReferenceValues { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
TargetNames
The names of the controls that the event targets.
Declaration
public List<string> TargetNames { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Type
The type of the event.
Declaration
public EventType Type { get; set; }
Property Value
Type | Description |
---|---|
EventType |