Click or drag to resize

IReadOnlyControlCollectionWithModifiedEventsT Interface

Read only collection of controls with collection modified events.

Namespace: AxiomCore2.Controls
Assembly: Canary.Axiom.Session (in Canary.Axiom.Session.exe) Version: 25.6.0.25344+3070493948bf7d32a86bd3e9a8bcf4cc9a5b1929
Syntax
C#
public interface IReadOnlyControlCollectionWithModifiedEvents<T> : IReadOnlyControlCollection<T>, 
	IEnumerable<T>, IEnumerable, ICollectionModifiedEvents<T>
where T : IControlBase

Type Parameters

T
Generic control type that implements IControlBase.

The IReadOnlyControlCollectionWithModifiedEventsT type exposes the following members.

Properties
 NameDescription
Public propertyCount Number of controls in the collection.
(Inherited from IReadOnlyControlCollectionT)
Public propertyItemInt32 Get a control from the collection by index.
(Inherited from IReadOnlyControlCollectionT)
Public propertyItemString Get a control from the collection by name.
(Inherited from IReadOnlyControlCollectionT)
Top
Methods
 NameDescription
Public methodContains Check if the collection contains a control.
(Inherited from IReadOnlyControlCollectionT)
Public methodContainsKey Check if the collection contains a control with name.
(Inherited from IReadOnlyControlCollectionT)
Public methodIndexOf(T) Get the index of a control in the collection by reference.
(Inherited from IReadOnlyControlCollectionT)
Public methodIndexOf(String) Get the index of a control in the collection by name.
(Inherited from IReadOnlyControlCollectionT)
Top
Events
 NameDescription
Public eventAdded Event handler to be called when a value has been added to a collection.
(Inherited from ICollectionModifiedEventsT)
Public eventRemoved Event handler to be called when a value has been removed from a collection.
(Inherited from ICollectionModifiedEventsT)
Top
See Also