11 lines
276 B
C#
11 lines
276 B
C#
![]() |
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Drawing
|
|||
|
{
|
|||
|
public interface IDrawingObjectCollection : IFloatingObjectCollection<IDrawingObject>, ICollection<IDrawingObject>, IEnumerable<IDrawingObject>, IEnumerable
|
|||
|
{
|
|||
|
}
|
|||
|
}
|