Implemented interface member:
11 references to Count
System.Windows.Forms (11)
System\Windows\Forms\Controls\Labels\LinkLabel.cs (4)
541for (int i = 0; i < Links.Count; i++) 632List<CharacterRange> ranges = new(Links.Count + 1); 1382if (FocusLink is null && Links.Count > 0) 1485if (focusIndex < Links.Count)
System\Windows\Forms\Controls\Labels\LinkLabel.LinkCollection.cs (4)
168if (_owner.Links.Count > 1) 178if (_owner.Links.Count > 1) 275for (int i = 0; i < Count; i++) 294return ((index >= 0) && (index < Count));
System\Windows\Forms\Controls\Labels\LinkLabel.LinkLabelAccessibleObject.cs (3)
28=> !this.TryGetOwnerAs(out LinkLabel? owner) ? null : owner.Links.Count != 0 32=> !this.TryGetOwnerAs(out LinkLabel? owner) ? null : owner.Links.Count != 0 47public override int GetChildCount() => this.TryGetOwnerAs(out LinkLabel? owner) ? owner.Links.Count : 0;