Skip to main content

LookupBuilder.FullScreen(Boolean) Method

OBSOLETE

This Method is obsolete now.

A Boolean value specifying whether or not to display the lookup in full-screen mode. Mirrors the client-side fullScreen option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

[Obsolete("")]
public LookupBuilder FullScreen(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
LookupBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().Lookup()
    .FullScreen(true)
)
See Also