LayoutLabelCollection.cs 353 B

12345678910111213141516171819
  1. namespace IndexFormula.Finance
  2. {
  3. using System;
  4. using System.Collections;
  5. public class LayoutLabelCollection : CollectionBase
  6. {
  7. public virtual void Add(LayoutLabel ll)
  8. {
  9. base.List.Add(ll);
  10. }
  11. public void Remove(LayoutLabel ll)
  12. {
  13. base.List.Remove(ll);
  14. }
  15. }
  16. }