Name

LinkLabel.LinkCollection

Synopsis

This collection class is used to contain the set of LinkLabel.Link objects in a LinkLabel.


public class LinkLabel.LinkCollection : IList, ICollection, IEnumerable {

// Public Constructors

   public LinkLabel.LinkCollection(LinkLabel owner);

// Public Instance Properties

   public int Count{get; }

// implements ICollection

   public bool IsReadOnly{get; }

// implements IList

   public virtual Link this{set; get; }

// Public Instance Methods

   public Link Add(int start, int length);

   public Link Add(int start, int length, object linkData);

   public virtual void Clear();  // implements IList

   public bool Contains(Link link);

   public IEnumerator GetEnumerator();  // implements IEnumerable

   public int IndexOf(Link link);

   public void Remove(Link value);

   public void RemoveAt(int index);  // implements IList

}

Get .NET Windows Forms in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.