EditDataItemValueGet

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalNumber EditDataItemValueGet(  )

The EditDataItemValueGet method gets the value of a data item.

Returns

The return value is a string handle to the value of the data item. Date fields are formatted as YYYY-MM-DD-HH24.MI.SS, numerics with a dot (.) as the decimal number.

Example

public SalNumber TestMethod()
{
	#region Local Variables
	SalString sName = "";
	#endregion
	
	#region Actions
	using (new SalContext(this))
	{
		sName = SalString.FromHandle(dfTrnCustomerName.EditDataItemValueGet());
	}
	return 0;
	#endregion
}