New to Telerik UI for ASP.NET MVC? Download free 30-day trial

PDFViewerMessagesDialogsSearchSettingsBuilder

Methods

Close(System.String)

Parameters

value - System.String

The value that configures the close.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.Close("Custom Close Message")) 
                    )
                )
             )

DragHandle(System.String)

Parameters

value - System.String

The value that configures the draghandle.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.DragHandle("Drag search")) 
                    )
                )
             )

InputLabel(System.String)

Parameters

value - System.String

The value that configures the inputlabel.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.InputLabel("Custom Search Text Message")) 
                    )
                )
             )

MatchCase(System.String)

Parameters

value - System.String

The value that configures the matchcase.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.MatchCase("Match Case")) 
                    )
                )
             )

Next(System.String)

Parameters

value - System.String

The value that configures the next.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.Next("Next Match")) 
                    )
                )
             )

Previous(System.String)

Parameters

value - System.String

The value that configures the previous.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.Previous("Previous Match")) 
                    )
                )
             )

Of(System.String)

Parameters

value - System.String

The value that configures the of.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
                .Messages(messages => messages
                    .Dialogs(dialogs => dialogs
                        .Search(search => search.Of("of {0}")) 
                    )
                )
             )

In this article
Not finding the help you need?