Skip to content

VersionStringTable Class

Represents a string table of a file version resource.

MethodDescription
Clear()Removes all strings from the string table.
GetEnumerator()Gets an enumeration over all strings in the table.
PropertyDescription
CountGets the number of strings in the table.
ItemGets or sets a string value.
KeysGets a collection of all the names of the strings in the table.
LocaleGets the locale (LCID) of the string table.
ValuesGets a collection of all the values in the table.
WixToolset.Dtf.Resources.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8

Removes all strings from the string table.

public void Clear()

Gets an enumeration over all strings in the table.

public IEnumerator<System.Collections.Generic.KeyValuePair`2<System.String,System.String>> GetEnumerator()

IEnumerator<System.Collections.Generic.KeyValuePair2<System.String,System.String>>` Enumeration of string name and value pairs

Gets the number of strings in the table.

public int Count { get; set; }

Gets or sets a string value.

public string Item[
string key
] { get; set; }
ParameterTypeDescription
keystringName of the string.

Gets a collection of all the names of the strings in the table.

public System.Collections.Generic.ICollection<System.String> Keys { get; set; }

Gets the locale (LCID) of the string table.

public int Locale { get; set; }

Gets a collection of all the values in the table.

public System.Collections.Generic.ICollection<System.String> Values { get; set; }