C# Class WixSharp.Controls.Dialog

Defines MSI Dialog. It represents WiX Dialog element.
Inheritance: WixEntity
Show file Open project: Eun/WixSharp Class Usage Examples

Public Properties

Property Type Description
Controls WixSharp.Controls.Control[]
Height int
Title string
Width int

Public Methods

Method Description
Dialog ( ) : System.Xml.Linq

Initializes a new instance of the Dialog class.

Dialog ( Id id ) : System.Xml.Linq

Initializes a new instance of the Dialog class.

ToString ( ) : string

Returns a System.String that represents this instance.

ToXElement ( ) : System.Xml.Linq.XElement

Converts the T:WixSharp.Dialog instance into WiX T:System.Xml.Linq.XElement.

Method Details

Dialog() public method

Initializes a new instance of the Dialog class.
public Dialog ( ) : System.Xml.Linq
return System.Xml.Linq

Dialog() public method

Initializes a new instance of the Dialog class.
public Dialog ( Id id ) : System.Xml.Linq
id Id The id.
return System.Xml.Linq

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

ToXElement() public method

Converts the T:WixSharp.Dialog instance into WiX T:System.Xml.Linq.XElement.
public ToXElement ( ) : System.Xml.Linq.XElement
return System.Xml.Linq.XElement

Property Details

Controls public property

Collection of the contained nested Controls (UI elements).
public Control[],WixSharp.Controls Controls
return WixSharp.Controls.Control[]

Height public property

The height of the dialog box in dialog units.
public int Height
return int

Title public property

The title of the dialog box.
public string Title
return string

Width public property

The width of the dialog box in dialog units.
public int Width
return int