[This is preliminary documentation and is subject to change.]

Changes database null to the unspecified value to be displayed on the screen. This routine changes only one element of the table.

Namespace:  OfficeClip.BusinessLayer.Tracker
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public void ChangeNullToUnspecified(
	DataSet ds,
	int tablePosition,
	int row,
	int column,
	bool isDisp,
	bool isBlank
)
Visual Basic (Declaration)
Public Sub ChangeNullToUnspecified ( _
	ds As DataSet, _
	tablePosition As Integer, _
	row As Integer, _
	column As Integer, _
	isDisp As Boolean, _
	isBlank As Boolean _
)
Visual C++
public:
void ChangeNullToUnspecified(
	DataSet^ ds, 
	int tablePosition, 
	int row, 
	int column, 
	bool isDisp, 
	bool isBlank
)

Parameters

ds
Type: System.Data..::.DataSet
The dataset to change.
tablePosition
Type: System..::.Int32
The Position of the table in the dataset where the change is desired.
row
Type: System..::.Int32
The table row to change.
column
Type: System..::.Int32
the table column to change.
isDisp
Type: System..::.Boolean
Shows if the output is supposed to be displayed on the screen. If not, we will not bother the convert the left angular bracket characters to "<"
isBlank
Type: System..::.Boolean
if true then the output is shown as blank otherwise it is shown as unspecified.

See Also