FileRow Class
Specialization of a row for the file table.
Properties
| Property | Description |
|---|---|
| Attributes | Gets or sets the attributes on a file. |
| Component | Gets or sets the component this file row belongs to. |
| Compressed | Gets or sets whether this file should be compressed. |
| DiskId | Gets or sets the disk id for this file. |
| File | Gets or sets the primary key of the file row. |
| FileName | Gets or sets the name of the file. |
| FileSize | Gets or sets the size of the file. |
| Language | Gets or sets the LCID of the file. |
| LongFileName | Gets or sets the real filesystem name of the file (without a pipe). This is typically the long name of the file. However, if no long name is available, falls back to the short name. |
| PreviousSource | Gets or sets the source location to the previous file. |
| Sequence | Gets or sets the sequence of the file row. |
| Source | Gets or sets the source location to the file. |
| Version | Gets or sets the version of the file. |
WixToolset.Data.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
Attributes Property
Gets or sets the attributes on a file.
Declaration
public int Attributes { get; set; }Component Property
Gets or sets the component this file row belongs to.
Declaration
public string Component { get; set; }Compressed Property
Gets or sets whether this file should be compressed.
Declaration
public WixToolset.Data.YesNoType Compressed { get; set; }DiskId Property
Gets or sets the disk id for this file.
Declaration
public int DiskId { get; set; }File Property
Gets or sets the primary key of the file row.
Declaration
public string File { get; set; }FileName Property
Gets or sets the name of the file.
Declaration
public string FileName { get; set; }FileSize Property
Gets or sets the size of the file.
Declaration
public int FileSize { get; set; }Language Property
Gets or sets the LCID of the file.
Declaration
public string Language { get; set; }LongFileName Property
Gets or sets the real filesystem name of the file (without a pipe). This is typically the long name of the file. However, if no long name is available, falls back to the short name.
Declaration
public string LongFileName { get; set; }PreviousSource Property
Gets or sets the source location to the previous file.
Declaration
public string PreviousSource { get; set; }Sequence Property
Gets or sets the sequence of the file row.
Declaration
public int Sequence { get; set; }Source Property
Gets or sets the source location to the file.
Declaration
public string Source { get; set; }Version Property
Gets or sets the version of the file.
Declaration
public string Version { get; set; }