VersionStringTable Class
Represents a string table of a file version resource.
Methods
Section titled “Methods”| Method | Description |
|---|---|
| Clear() | Removes all strings from the string table. |
| GetEnumerator() | Gets an enumeration over all strings in the table. |
Properties
Section titled “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 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
Clear() Method
Section titled “Clear() Method”Removes all strings from the string table.
Declaration
Section titled “Declaration”public void Clear()GetEnumerator() Method
Section titled “GetEnumerator() Method”Gets an enumeration over all strings in the table.
Declaration
Section titled “Declaration”public IEnumerator<System.Collections.Generic.KeyValuePair`2<System.String,System.String>> GetEnumerator()Return value
Section titled “Return value”IEnumerator<System.Collections.Generic.KeyValuePair2<System.String,System.String>>` Enumeration of string name and value pairs
Count Property
Section titled “Count Property”Gets the number of strings in the table.
Declaration
Section titled “Declaration”public int Count { get; set; }Item Property
Section titled “Item Property”Gets or sets a string value.
Declaration
Section titled “Declaration”public string Item[ string key] { get; set; }Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| key | string | Name of the string. |
Keys Property
Section titled “Keys Property”Gets a collection of all the names of the strings in the table.
Declaration
Section titled “Declaration”public System.Collections.Generic.ICollection<System.String> Keys { get; set; }Locale Property
Section titled “Locale Property”Gets the locale (LCID) of the string table.
Declaration
Section titled “Declaration”public int Locale { get; set; }Values Property
Section titled “Values Property”Gets a collection of all the values in the table.
Declaration
Section titled “Declaration”public System.Collections.Generic.ICollection<System.String> Values { get; set; }