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