Class DataRowContainer
Object encapsulating DataRow objects to be accessible via macro engine.
public class DataRowContainer : IDataContainer, ISimpleDataContainer
- Inheritance
-
objectDataRowContainer
- Implements
- Extension Methods
Constructors
DataRowContainer(DataRow)
Creates new instance of DataRowContainer.
public DataRowContainer(DataRow dr)
Parameters
dr
DataRowDataRow object to be encapsulated
DataRowContainer(DataRowView)
Creates new instance of DataRowContainer from DataRowView.
public DataRowContainer(DataRowView dr)
Parameters
dr
DataRowViewDataRowView to be encapsulated
Properties
AddTableProperty
If true, Table property of DataRow will be included in the supported columns of this container.
public bool AddTableProperty { get; set; }
Property Value
- bool
ColumnNames
Column names.
public List<string> ColumnNames { get; }
Property Value
- List<string>
DataRow
Gets the encapsulated DataRow.
public DataRow DataRow { get; }
Property Value
- DataRow
this[string]
Gets or sets the value of the column.
public object this[string columnName] { get; set; }
Parameters
columnName
stringColumn name
Property Value
- object
Methods
ContainsColumn(string)
Returns true if the object contains specified column.
public bool ContainsColumn(string columnName)
Parameters
columnName
stringColumn name
Returns
- bool
GetValue(string)
Gets or sets the value of the column.
public object GetValue(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
SetValue(string, object)
Not implemented.
public bool SetValue(string columnName, object value)
Parameters
columnName
stringColumn name
value
objectNew value
Returns
- bool
TryGetValue(string, out object)
Returns value of column.
public bool TryGetValue(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)