11 references to MaximumDepth
System.Web (11)
UI\WebControls\Adapters\MenuAdapter.cs (3)
193if (_titleItem.Depth + 1 >= owner.MaximumDepth) { 369(depthPlusOne >= owner.MaximumDepth)); 603if (++matches >= Control.MaximumDepth) {
UI\WebControls\Menu.cs (4)
1430if ((MaximumDynamicDisplayLevels != -1) && (depth >= MaximumDepth)) { 1715if (data.HasChildren && (depth < MaximumDepth)) { 2479if (node.Depth >= MaximumDepth) { 2590if (++matches >= MaximumDepth) {
UI\WebControls\MenuItem.cs (3)
662if (ChildItems.Count > 0 && nextDepth < _owner.MaximumDepth) { 736bool isNextInRange = (nextDepth + 1 < _owner.MaximumDepth); 1007(depthPlusOne < _owner.MaximumDepth));
UI\WebControls\MenuRendererStandards.cs (1)
338return (item.Depth + 1 >= Menu.MaximumDepth);