Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Dbmlsync 集成组件在 12 版中已删除。可以使用 dbmlsync 编程接口代替该组件。请参见Dbmlsync API。
在其上进行上载或下载操作的行所包含的列数。
Public Property ColumnCount( ) As Integer Member of DbmlsyncCOM.IRowTransferData
ColumnCount 属性指定在其上进行上载或下载操作的行的列数。下面的示例说明在 UploadRow 事件中如何使用 ColumnCount 属性。
请参见UploadRow 事件(已删除)。
下面是一个 Visual Basic .NET 示例。
Private Sub dbmlsync1_UploadRow( ByVal rowData As DbmlsyncCOM.IRowTransferData ) Handles dbmlsync1.UploadRow MsgBox "Number of Columns:" + CStr(rowData.ColumnCount) End Sub