Skip to main content

VersionStringTable Class

Represents a string table of a file version resource.

Methods

MethodDescription
Clear()Removes all strings from the string table.
GetEnumerator()Gets an enumeration over all strings in the table.

Properties

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

Clear() Method

Removes all strings from the string table.

Declaration

public void Clear()

GetEnumerator() Method

Gets an enumeration over all strings in the table.

Declaration

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

Return value

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

Count Property

Gets the number of strings in the table.

Declaration

public int Count { get; set; } 

Item Property

Gets or sets a string value.

Declaration

public string Item[
string key
] { get; set; }

Parameters

ParameterTypeDescription
keystringName of the string.

Keys Property

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

Declaration

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

Locale Property

Gets the locale (LCID) of the string table.

Declaration

public int Locale { get; set; } 

Values Property

Gets a collection of all the values in the table.

Declaration

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