7 overrides of FormattedValueType
System.Windows.Forms (7)
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (1)
127public override Type FormattedValueType
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (1)
316public override Type FormattedValueType
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
526public override Type FormattedValueType
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (1)
126public override Type FormattedValueType
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (1)
130public override Type FormattedValueType
winforms\Managed\System\WinForms\DataGridViewLinkCell.cs (1)
129public override Type FormattedValueType
winforms\Managed\System\WinForms\DataGridViewTextBoxCell.cs (1)
85public override Type FormattedValueType
18 references to FormattedValueType
System.Windows.Forms (18)
winforms\Managed\System\WinForms\DataGridViewCell.cs (16)
374if (this.FormattedValueType != null) 378formattedValueTypeConverter = this.DataGridView.GetCachedTypeConverter(this.FormattedValueType); 382formattedValueTypeConverter = TypeDescriptor.GetConverter(this.FormattedValueType); 1898DataGridViewCellFormattingEventArgs gdvcfe = this.DataGridView.OnCellFormatting(this.ColumnIndex, rowIndex, value, this.FormattedValueType, cellStyle); 1905this.FormattedValueType != null && 1906(formattedValue == null || !this.FormattedValueType.IsAssignableFrom(formattedValue.GetType()))) 1911this.FormattedValueType, 1940(formattedValue == null || this.FormattedValueType == null || !this.FormattedValueType.IsAssignableFrom(formattedValue.GetType()))) 1944this.FormattedValueType != null && 1945!typeof(System.ValueType).IsAssignableFrom(this.FormattedValueType)) 1951if (this.FormattedValueType == null) 3117if (this.FormattedValueType == stringType) 4461if (this.FormattedValueType == null) 4470!this.FormattedValueType.IsAssignableFrom(formattedValue.GetType())) 4476this.FormattedValueType,
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
25465(dataGridViewCurrentCell.FormattedValueType != null && dataGridViewCurrentCell.FormattedValueType.IsAssignableFrom(nullValue.GetType())))