DataGridTextBoxColumn.EnterNullValue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enters a Value in the column.
protected public:
override void EnterNullValue();
protected internal override void EnterNullValue ();
override this.EnterNullValue : unit -> unit
Protected Friend Overrides Sub EnterNullValue ()
Examples
The following example tests a DataGridColumnStyle to determine its column type. If the column is a DataGridTextBoxColumn, and the DataColumn allows null
values, then the NullText property is set and the EnterNullValue method invoked.
Public Class Form1: Inherits Form
Protected dataGrid1 As DataGrid
Private Sub SetNullText()
Dim dgeCol As MyGridColumn
' Assumes a column named Status exists.
dgeCol = CType(DataGrid1.TableStyles("Customers"). _
GridColumnStyles("Status"), MyGridColumn)
dgeCol.EnterNull
End Sub
End Class
Public Class MyGridColumn
Inherits DataGridTextBoxColumn
Public Sub EnterNull()
me.EnterNullValue
End Sub
End Class
Remarks
Enters the NullText value into the cell.
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.