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