Class XlfData
- Namespace
- SunamoDevCode.FileFormats
- Assembly
- SunamoDevCode.dll
Represents data from an XLF (XML Localization Interchange File Format) file including trans-units and metadata.
public class XlfData
- Inheritance
-
XlfData
- Inherited Members
- Extension Methods
Properties
AllIds
Gets or sets the list of all translation unit IDs.
public List<string> AllIds { get; set; }
Property Value
Group
Gets or sets the group XML element.
public XElement Group { get; set; }
Property Value
Path
Gets or sets the file path to the XLF file.
public string Path { get; set; }
Property Value
TransUnits
Gets or sets the list of trans-unit XML elements.
public List<XElement> TransUnits { get; set; }
Property Value
XmlDocument
Gets or sets the XML document.
public XDocument XmlDocument { get; set; }
Property Value
Methods
FillIds()
Fills the AllIds list with IDs from all trans-units.
public void FillIds()