30 references to Depth
System.Web (30)
UI\WebControls\Adapters\MenuAdapter.cs (6)
193
if (_titleItem.
Depth
+ 1 >= owner.MaximumDepth) {
258
if (item.
Depth
< owner.StaticDisplayLevels) {
279
if (item.
Depth
< owner.StaticDisplayLevels &&
287
else if (item.
Depth
>= owner.StaticDisplayLevels &&
306
int depth = item.
Depth
;
628
if (parentItem != null && item.
Depth
+ 1 > Control.StaticDisplayLevels) {
UI\WebControls\Menu.cs (8)
1427
int depth = node.
Depth
+ 1;
1753
int depth = item.
Depth
;
1817
if (item.
Depth
>= StaticDisplayLevels) {
1964
int depth = item.
Depth
;
2010
int nextDepth = item.
Depth
+ 1;
2040
int nextDepth = item.
Depth
+ 1;
2180
mi.
Depth
+ 1 >= StaticDisplayLevels) {
2479
if (node.
Depth
>= MaximumDepth) {
UI\WebControls\MenuItem.cs (13)
201
_depth = Parent.
Depth
+ 1;
238
if (_owner.StaticItemFormatString.Length > 0 &&
Depth
< _owner.StaticDisplayLevels) {
241
else if (_owner.DynamicItemFormatString.Length > 0 &&
Depth
>= _owner.StaticDisplayLevels) {
570
_valuePath = ((parentPath.Length == 0) && (_parent.
Depth
== -1)) ?
602
if (
Depth
< _owner.StaticDisplayLevels) {
624
return ((_owner.StaticItemTemplate == null ||
Depth
>= _owner.StaticDisplayLevels) &&
625
(_owner.DynamicItemTemplate == null ||
Depth
< _owner.StaticDisplayLevels));
661
int nextDepth =
Depth
+ 1;
800
int depth =
Depth
;
803
int depthPlusOne =
Depth
+ 1;
1018
if (((
Depth
+ 1) < _owner.StaticDisplayLevels) && (ChildItems.Count != 0)) {
1145
((_owner.StaticItemTemplate != null &&
Depth
< _owner.StaticDisplayLevels) ||
1146
(_owner.DynamicItemTemplate != null &&
Depth
>= _owner.StaticDisplayLevels))) {
UI\WebControls\MenuRendererStandards.cs (3)
338
return (item.
Depth
+ 1 >= Menu.MaximumDepth);
342
return (item.
Depth
+ 1 >= Menu.StaticDisplayLevels);
351
return (item.
Depth
>= Menu.StaticDisplayLevels);