ResizeTitle() 공개 메소드

Resizes the title width based on the size of the input font
public ResizeTitle ( System font ) : void
font System
리턴 void
예제 #1
0
 /// <summary>
 /// Adds a column to the collection
 /// </summary>
 /// <param name="column">The column to add</param>
 public void AddColumn(CustomListColumn column)
 {
     columns.Add(column);
     column.ResizeTitle(Font);
 }
예제 #2
0
		/// <summary>
		/// Adds a column to the collection
		/// </summary>
		/// <param name="column">The column to add</param>
		public void AddColumn(CustomListColumn column)
		{
			columns.Add(column);
			column.ResizeTitle(Font);
		}