点击或拖拽改变大小

DbRecord 类

X#
This class is used by the DbDataSource class to represent the records in a workarea.
继承层次
Object
  DbRecord

命名空间:  XSharp
程序集:  XSharp.Data (在 XSharp.Data.dll 中) 版本:2.22 GA
语法
 CLASS DbRecord IMPLEMENTS INotifyPropertyChanged, 
	IDbRow
查看代码

DbRecord 类型公开以下成员。

构造函数
  名称说明
公共方法DbRecord
Initializes a new instance of the DbRecord class
Top
属性
  名称说明
公共属性Deleted
Is the current record deleted ?
公共属性FieldName
Get the fieldname for a certain field position
公共属性FieldValue
Get the value for a certain field position
公共属性ItemInt32
Read/Write fields in the workarea by position.
公共属性ItemString
Read/Write fields in the workarea by name.
公共属性RecNo
Record number in the workarea. Does not have to match the logical position in the list.
Top
方法
  名称说明
公共方法ToString (重写 ToString.)
Top
事件
  名称说明
公共事件PropertyChanged
Occurs when a property value changes.
Top
备注
The record class exposes the fields in the workarea as 'pseudo' properties of these fields. The DbRecord class also implements INotifyPropertychanged, so when the record is bound to a data aware control then this control will 'see' changes that were made to the record.
参见