Upravit

Sdílet prostřednictvím


Section Constructors

Definition

Overloads

Section()

Constructs a Section without header or footers.

Section(String)

Constructs a Section with the specified header

Section(UIView)
Section(String, String)

Constructs a Section with a header and a footer

Section(UIView, UIView)

Section()

Constructs a Section without header or footers.

public Section ();

Applies to

Section(String)

Constructs a Section with the specified header

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

Parameters

caption
String

The header to display

Applies to

Section(UIView)

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

Parameters

header
UIView

Applies to

Section(String, String)

Constructs a Section with a header and a footer

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

Parameters

caption
String

The caption to display (or null to not display a caption)

footer
String

The footer to display.

Applies to

Section(UIView, UIView)

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

Parameters

header
UIView
footer
UIView

Applies to