Retrieves the keys and names of all the predefined texts.
Public Function GetPredefinedTextList() As PredefinedTextsParams
// Get list of predefined text PredefinedTextsParams textsParams = textService.GetPredefinedTextList(); int i = 1; // Print the list foreach (PredefinedTextParams textParams In textsParams) { Console.WriteLine("item {0}: Numerator:{1}, TextCode:{2}", i++, textParams.Numerator, textParams.TextCode); }
PredefinedTextsService Object