ap
-
1/17/2013 12:32:06 PM
Creating multilingual treenodes and documents
hello. I'm using the api to create documents within the tree. I'm able to do so easily using: TreeNode newNode = TreeNode.New("custom.MyClass", tree); newNode.DocumentName = "My English Title"; newNode.DocumentCulture = "en_US";
my question is how can i create a duplicate document in another culture (when the DocumentName's don't match, but are actually the same document): TreeNode newNode = TreeNode.New("custom.MyClass", tree); newNode.DocumentName = "My Spanish Title"; newNode.DocumentCulture = "es_ES";
is there some parameter that i need to set? thanks. AP
|