Skip to content

FileRow Class

Specialization of a row for the file table.

PropertyDescription
AttributesGets or sets the attributes on a file.
ComponentGets or sets the component this file row belongs to.
CompressedGets or sets whether this file should be compressed.
DiskIdGets or sets the disk id for this file.
FileGets or sets the primary key of the file row.
FileNameGets or sets the name of the file.
FileSizeGets or sets the size of the file.
LanguageGets or sets the LCID of the file.
LongFileNameGets 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.
PreviousSourceGets or sets the source location to the previous file.
SequenceGets or sets the sequence of the file row.
SourceGets or sets the source location to the file.
VersionGets or sets the version of the file.
WixToolset.Data.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8

Gets or sets the attributes on a file.

public int Attributes { get; set; }

Gets or sets the component this file row belongs to.

public string Component { get; set; }

Gets or sets whether this file should be compressed.

public WixToolset.Data.YesNoType Compressed { get; set; }

Gets or sets the disk id for this file.

public int DiskId { get; set; }

Gets or sets the primary key of the file row.

public string File { get; set; }

Gets or sets the name of the file.

public string FileName { get; set; }

Gets or sets the size of the file.

public int FileSize { get; set; }

Gets or sets the LCID of the file.

public string Language { get; set; }

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.

public string LongFileName { get; set; }

Gets or sets the source location to the previous file.

public string PreviousSource { get; set; }

Gets or sets the sequence of the file row.

public int Sequence { get; set; }

Gets or sets the source location to the file.

public string Source { get; set; }

Gets or sets the version of the file.

public string Version { get; set; }