Section Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.