Skip to main content
A newer version of this page is available. .

ImageGallerySettings.TextVisibility Property

Enables you to specify the thumbnail text area visibility mode.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v20.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public ElementVisibilityMode TextVisibility { get; set; }

Property Value

Type Description
ElementVisibilityMode

One of the ElementVisibilityMode enumeration values.

Available values:

Name Description
None

The element is not displayed.

Faded

The element is always visible. When a mouse is not over the element, it is faded.

Note, on touch devices the “mouse over” behavior can be simulated by tapping the image area.

OnMouseOver

The element is displayed when the mouse is over the corresponding area.

Note, on touch devices the “mouse over” behavior can be simulated by tapping the image area.

Always

The element is always visible.

Remarks

The text specified by the ImageGalleryItem.Text (by the MVCxImageGalleryItem.Text) property is displayed in the thumbnail text area. Use the TextVisibility property to control the area’s visibility.

Note

On touch devices, the Faded and OnMouseOver property values equal “None”.

See Also