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