| ZennoLab.Macros Assembly > ZennoLab.Macros Namespace > TextProcessing Class : ToList Method |
Type: System.String
The source string.
Type: System.String
The splitter of the rows in String object.
Type: System.String
The split type of the rows in String object. It can have the following values: Text or Regex.
Type: IZennoPosterProjectModel
The project object in which need store the data.
Type: IZennoList
The list object in which need store the data.
public static void ToList( string sourceString, string rowSplitter, string rowSplitterType, IZennoPosterProjectModel project, IZennoList list )
Type: System.String
The source string.
Type: System.String
The splitter of the rows in String object.
Type: System.String
The split type of the rows in String object. It can have the following values: Text or Regex.
Type: IZennoPosterProjectModel
The project object in which need store the data.
Type: IZennoList
The list object in which need store the data.
// performs convert string data to list data by specific row splitter Macros.TextProcessing.ToList("1 2 3 4 5 6 7 8 9 10", " ", "Text", project, project.Lists["List1"]);
// performs convert string data to list data by specific row splitter Macros::TextProcessing::ToList("1 2 3 4 5 6 7 8 9 10", " ", "Text", $project, $project->Lists->get_Item("List1"));
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.