Click or drag to resize

RecordClassAssignAllRow Method

AssignAllRow is defined Overridable and is supposed to be overriden in the subclass

Namespace:  Dynamicweb.News
Assembly:  Dynamicweb.News (in Dynamicweb.News.dll) Version: 1.0.10
Syntax
public virtual void AssignAllRow(
	DataRow rwRow
)

Parameters

rwRow
Type: System.DataDataRow
DataRow that contains data to assign to the type strong object
Remarks
Examples
Overrides Sub AssignAllRow(ByVal rwParagraph As DataRow)
    If FieldExists(rwParagraph, "ParagraphID") Then _
       ParagraphID = CType(rwParagraph("ParagraphID"), System.Int32)
End Sub
See Also