Partager via


Section Constructeurs

Définition

Surcharges

Section()

Construit une section sans en-tête ni pied de page.

Section(String)

Construit une section avec l’en-tête spécifié

Section(UIView)
Section(String, String)

Construit une section avec un en-tête et un pied de page

Section(UIView, UIView)

Section()

Construit une section sans en-tête ni pied de page.

public Section ();

S’applique à

Section(String)

Construit une section avec l’en-tête spécifié

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

Paramètres

caption
String

En-tête à afficher

S’applique à

Section(UIView)

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

Paramètres

header
UIView

S’applique à

Section(String, String)

Construit une section avec un en-tête et un pied de page

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

Paramètres

caption
String

Légende à afficher (ou null pour ne pas afficher de légende)

footer
String

Pied de page à afficher.

S’applique à

Section(UIView, UIView)

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

Paramètres

header
UIView
footer
UIView

S’applique à