Menu::DynamicVerticalOffset Property

 

Gets or sets the number of pixels to shift a dynamic menu vertically relative to its parent menu item.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property int DynamicVerticalOffset {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The number of pixels to shift a dynamic menu vertically relative to its parent menu item. The default is 0.

Use the DynamicVerticalOffset property to adjust the vertical position of a dynamic menu relative to its parent menu item. This property affects the position of a dynamic menu differently depending on whether the Menu control is displayed vertically or horizontally (as specified by the Orientation property). The following table describes the differences.

Orientation

Description

Horizontal

By default, a dynamic menu is displayed directly below its parent menu item without any spacing in between. Setting this property controls the vertical spacing between the dynamic menu and its parent menu item.

Vertical

By default, a dynamic menu item is displayed next to its parent menu item with the top edges aligned. Setting this property shifts the dynamic menu position vertically from this base position.

System_CAPS_noteNote

You can set this property to a negative value to shift a dynamic menu in a negative direction. If you are displaying a horizontal menu, a negative value causes a dynamic menu and its parent menu item to overlap.

The following code example demonstrates how to use the DynamicVerticalOffset property to shift a dynamic menu down by 10 pixels from the top of its parent menu item.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: