Implemented interface member:
property
Count
System.Collections.ICollection.Count
43 references to Count
System.Web (43)
UI\WebControls\Adapters\MenuAdapter.cs (4)
225
if (owner.StaticDisplayLevels > 1 && child.ChildItems.
Count
> 0) {
235
if (depth + 1 < maxDepth && child.ChildItems.
Count
> 0) {
367
(childItems.
Count
== 0) ||
612
if (item.ChildItems.
Count
> 0) {
UI\WebControls\Menu.cs (5)
1820
for (int i = 0; i < item.ChildItems.
Count
; i++) {
2179
mi.ChildItems.
Count
> 0 &&
2233
if (Items.
Count
> 0) {
2245
if (Items.
Count
> 0) {
2291
if (Items.
Count
> 0) {
UI\WebControls\MenuItem.cs (17)
597
if (ChildItems.
Count
> 0) {
662
if (ChildItems.
Count
> 0 && nextDepth < _owner.MaximumDepth) {
703
for (int i = 0; i < ChildItems.
Count
; i++) {
710
for (int i = 0; i < ChildItems.
Count
; i++) {
737
for (int i = 0; i < ChildItems.
Count
; i++) {
739
&& ChildItems[i].ChildItems.
Count
!= 0
775
for (int i = 0; i < ChildItems.
Count
; i++) {
776
if (ChildItems[i].ChildItems.
Count
!= 0
837
if ((Selectable && Enabled) || ChildItems.
Count
!= 0) {
849
if ((Selectable && Enabled) || ChildItems.
Count
!= 0) {
951
else if ((ChildItems.
Count
!= 0) && (depthPlusOne >= _owner.StaticDisplayLevels)) {
1018
if (((Depth + 1) < _owner.StaticDisplayLevels) && (ChildItems.
Count
!= 0)) {
1031
(_owner.Items.
Count
!= 0) &&
1032
(parent != _owner.Items[_owner.Items.
Count
- 1])) ||
1034
(parent.Parent.ChildItems.
Count
!= 0) &&
1035
(parent != parent.Parent.ChildItems[parent.Parent.ChildItems.
Count
- 1]))) {
1194
if (ChildItems.
Count
> 0) {
UI\WebControls\MenuItemCollection.cs (9)
101
if (this.
Count
== 0) return;
152
for (int i = 0; i <
Count
; i++) {
210
for (int i = 0; i <
Count
; i++) {
261
object[] nodes = new object[
Count
+ 1];
290
for (int i = 0; i <
Count
; i++) {
304
for (int i = 0; i <
Count
; i++) {
373
if (index < (list.
Count
- 1)) {
379
index = list.
Count
;
393
if (index >= list.
Count
)
UI\WebControls\MenuRendererClassic.cs (6)
264
for (int i = 0; i < Menu.Items.
Count
; i++) {
267
if (Menu.Items[i].ChildItems.
Count
!= 0) {
278
for (int i = 0; i < Menu.Items.
Count
; i++) {
281
if (Menu.Items[i].ChildItems.
Count
!= 0) {
291
for (int i = 0; i < Menu.Items.
Count
; i++) {
313
for (int i = 0; i < Menu.Items.
Count
; i++) {
UI\WebControls\MenuRendererStandards.cs (2)
560
if (item.ChildItems.
Count
> 0 && !IsChildPastMaximumDepth(item) && item.Enabled) {
577
return (item.ChildItems.
Count
> 0) && IsChildDepthDynamic(item) && !IsChildPastMaximumDepth(item);