CPF/CPF.ReoGrid/Drawing/IFloatingObjectCollection.cs
2024-06-24 10:15:59 +08:00

17 lines
322 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
namespace CPF.ReoGrid.Drawing
{
public interface IFloatingObjectCollection<T> : ICollection<T>, IEnumerable<T>, IEnumerable where T : IFloatingObject
{
T this[int index]
{
get;
}
void AddRange(IEnumerable<T> drawingObjects);
}
}