C# Class WixSharp.Controls.Control

Defines generic WiX Control.
Inheritance: WixEntity
Afficher le fichier Open project: Eun/WixSharp

Méthodes publiques

Свойство Type Description
Actions List
Conditions List
Disabled bool
EmbeddedXML string
Height int
Hidden bool
Property string
Text string
Tooltip string
Type string
Width int
X int
Y int

Méthodes publiques

Méthode Description
Control ( ) : System.Collections.Generic

Initializes a new instance of the Control class.

Control ( Id id ) : System.Collections.Generic

Initializes a new instance of the Control class.

ToXElement ( ) : System.Xml.Linq.XElement

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

Method Details

Control() public méthode

Initializes a new instance of the Control class.
public Control ( ) : System.Collections.Generic
Résultat System.Collections.Generic

Control() public méthode

Initializes a new instance of the Control class.
public Control ( Id id ) : System.Collections.Generic
id Id The Control id.
Résultat System.Collections.Generic

ToXElement() public méthode

Converts the T:WixSharp.Control instance into WiX T:System.Xml.Linq.XElement.
public ToXElement ( ) : System.Xml.Linq.XElement
Résultat System.Xml.Linq.XElement

Property Details

Actions public_oe property

The actions.
public List Actions
Résultat List

Conditions public_oe property

Conditions for the control.
public List Conditions
Résultat List

Disabled public_oe property

Sets whether the control is disabled.
public bool Disabled
Résultat bool

EmbeddedXML public_oe property

The raw XML string to be embedded into WiX Control element.
public string EmbeddedXML
Résultat string

Height public_oe property

Vertical coordinate of the upper-left corner of the rectangular boundary of the control. This must be a non-negative number.
public int Height
Résultat int

Hidden public_oe property

Sets whether the control is hidden.
public bool Hidden
Résultat bool

Property public_oe property

The name of a defined property to be linked to this control. This column is required for active controls.
public string Property
Résultat string

Text public_oe property

A localizable string used to set the initial text contained in a control. This attribute can contain a formatted string that is processed at install time to insert the values of properties using [PropertyName] syntax. Also supported are environment variables, file installation paths, and component installation directories.
public string Text
Résultat string

Tooltip public_oe property

The string used for the Tooltip.
public string Tooltip
Résultat string

Type public_oe property

The type of the control. Could be one of the following: Billboard, Bitmap, CheckBox, ComboBox, DirectoryCombo, DirectoryList, Edit, GroupBox, Icon, Line, ListBox, ListView, MaskedEdit, PathEdit, ProgressBar, PushButton, RadioButtonGroup, ScrollableText, SelectionTree, Text, VolumeCostList, VolumeSelectCombo. Use constants to define the type of the control.
public string Type
Résultat string

Width public_oe property

Width of the rectangular boundary of the control. This must be a non-negative number.
public int Width
Résultat int

X public_oe property

Horizontal coordinate of the upper-left corner of the rectangular boundary of the control. This must be a non-negative number.
public int X
Résultat int

Y public_oe property

Width of the rectangular boundary of the control. This must be a non-negative number.
public int Y
Résultat int