1 write to format
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (1)
204this.format = value;
12 references to format
System.Windows.Forms (12)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (12)
198return format; 203if (format == null || !format.Equals(value)) { 209if (format.Length == 0) { 245if (!value && (format == null || format.Length == 0)) { 429} else if (format != null && format.Length != 0 && this.parseMethod != null && this.FormatInfo != null) { 434edit.Text = ((IFormattable)value).ToString(format, formatInfo); 532else if (format != null && format.Length != 0 && (value is IFormattable)) { 534return ((IFormattable)value).ToString(format, this.formatInfo);