WmlPageAdapter.IsFormRendered(Form) Método

Definição

Retorna se o formulário especificado deve ou não ser renderizado como parte da solicitação atual.Returns whether or not the specified form is to be rendered as part of the current request. Esta API está obsoleta.This API is obsolete. Para saber mais sobre como desenvolver aplicativos móveis ASP.NET, veja Mobile Apps & Sites with ASP.NET (Aplicativos móveis e sites com ASP.NET).For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual bool IsFormRendered(System::Web::UI::MobileControls::Form ^ form);
public virtual bool IsFormRendered (System.Web.UI.MobileControls.Form form);
abstract member IsFormRendered : System.Web.UI.MobileControls.Form -> bool
override this.IsFormRendered : System.Web.UI.MobileControls.Form -> bool
Public Overridable Function IsFormRendered (form As Form) As Boolean

Parâmetros

form
Form

Nome programático do formulário.Programmatic name of the form.

Retornos

Boolean

true se o formulário especificado precisar ser renderizado como parte da solicitação atual; caso contrário, false.true if the specified form is to be rendered as part of the current request; otherwise, false.

Comentários

Para a HtmlPageAdapter classe, somente o formulário ativo é renderizado para cada solicitação.For the HtmlPageAdapter class, only the active form is rendered for each request.

Para a WmlPageAdapter classe, vários formulários podem ser combinados como cartões em um único baralho, se o tamanho permitir.For the WmlPageAdapter class, multiple forms can be combined as cards into a single deck, if size permits.

Aplica-se a

Confira também