VersionStringTable Class
Represents a string table of a file version resource.
Methods
| Method | Description | 
|---|---|
| Clear() | Removes all strings from the string table. | 
| GetEnumerator() | Gets an enumeration over all strings in the table. | 
Properties
| Property | Description | 
|---|---|
| Count | Gets the number of strings in the table. | 
| Item | Gets or sets a string value. | 
| Keys | Gets a collection of all the names of the strings in the table. | 
| Locale | Gets the locale (LCID) of the string table. | 
| Values | Gets a collection of all the values in the table. | 
WixToolset.Dtf.Resources.dll version 6.0.0+8c7432e50072e009353ea5f2c956ccf453476f71
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
| Parameter | Type | Description | 
|---|---|---|
| key | string | Name 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; }