RC-WinTrans Object Model Help |
XLIFFFile.AddGroup
|
Adds a group to the node with the given node number. The function returns the node number of the new group.
Syntax: |
AddGroup( ParentNodeNumber As Long ) As Long |
| Return: | Long |
| Parameters: |
ParentNodeNumber Node number of the parent node.
|
| Example: | Dim File As XliffFile
Dim FileNo As Long
Dim GroupNo As Long
Dim TUNo As Long
Dim RetVal As Boolean
Set File = Tools.XMLTool.CreateXLIFFFile("C:\test.xlf")
FileNo = File.AddFileSection("en-us", "database.mdb", "database")
GroupNo = File.AddGroup(FileNo)
TUNo = File.AddTransUnit(GroupNo, "en-us", "Text", "")
RetVal = File.AddProperty(TUNo, "resname", "", "IDS_TEXT")
If (RetVal) Then
File.Save
End If
|
See also: