DekGenius.com
[ Team LiB ] Previous Section Next Section

LinkLabel.LinkCollection

System.Windows.Forms (system.windows.forms.dll)class

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
}
    [ Team LiB ] Previous Section Next Section