Compartilhar via


Section Construtores

Definição

Sobrecargas

Section()

Constrói uma Seção sem cabeçalho ou rodapés.

Section(String)

Constrói uma seção com o cabeçalho especificado

Section(UIView)
Section(String, String)

Constrói uma seção com um cabeçalho e um rodapé

Section(UIView, UIView)

Section()

Constrói uma Seção sem cabeçalho ou rodapés.

public Section ();

Aplica-se a

Section(String)

Constrói uma seção com o cabeçalho especificado

public Section (string caption);
new MonoTouch.Dialog.Section : string -> MonoTouch.Dialog.Section

Parâmetros

caption
String

O cabeçalho a ser exibido

Aplica-se a

Section(UIView)

public Section (UIKit.UIView header);
new MonoTouch.Dialog.Section : UIKit.UIView -> MonoTouch.Dialog.Section

Parâmetros

header
UIView

Aplica-se a

Section(String, String)

Constrói uma seção com um cabeçalho e um rodapé

public Section (string caption, string footer);
new MonoTouch.Dialog.Section : string * string -> MonoTouch.Dialog.Section

Parâmetros

caption
String

A legenda a ser exibida (ou nula para não exibir uma legenda)

footer
String

O rodapé a ser exibido.

Aplica-se a

Section(UIView, UIView)

public Section (UIKit.UIView header, UIKit.UIView footer);
new MonoTouch.Dialog.Section : UIKit.UIView * UIKit.UIView -> MonoTouch.Dialog.Section

Parâmetros

header
UIView
footer
UIView

Aplica-se a