PSDataTable.GetColumnAsBoolean Method (DataRow, String, Boolean)
Gets the Boolean value of the specified column in a DataRow object, or a default value.
Namespace: Microsoft.Office.Project.Server.Library
Assembly: Microsoft.Office.Project.Server.Library (in Microsoft.Office.Project.Server.Library.dll)
Syntax
'Declaration
Public Shared Function GetColumnAsBoolean ( _
row As DataRow, _
colName As String, _
defaultValue As Boolean _
) As Boolean
'Usage
Dim row As DataRow
Dim colName As String
Dim defaultValue As Boolean
Dim returnValue As Boolean
returnValue = PSDataTable.GetColumnAsBoolean(row, _
colName, defaultValue)
public static bool GetColumnAsBoolean(
DataRow row,
string colName,
bool defaultValue
)
Parameters
- row
Type: System.Data.DataRow
The row to search for the specified column.
- colName
Type: System.String
The name of the column.
- defaultValue
Type: System.Boolean
The default value to return, if either row or colName are a null reference (Nothing in Visual Basic).
Return Value
Type: System.Boolean
Returns the Boolean value of the specified column. If either row or colName are a null reference (Nothing in Visual Basic), it returns false.