GetColumn() public method

Gets the column with the specified name
public GetColumn ( string name ) : CustomListColumn
name string The name.
return CustomListColumn
Example #1
0
 /// <summary>
 /// Gets a column by the specified title
 /// </summary>
 /// <param name="name">The name of the column to get</param>
 /// <returns></returns>
 public CustomListColumn GetColumn(string name)
 {
     return(columns.GetColumn(name));
 }