Returns various types of information for the specified cell, such as the cell’s dimension members and calculation status.
To return cell information as an XML string, use GetCellInfoAsXML. |
<HFMwDataGrid>.GetCellInfo lRow, lColumn, pvarbstrProcessUnit, pvarbstrPOVDetail, pvarbstrView, pvarbstrCalcStatus, pvarbstrProcessLevel, pvarbstrCellStatus, pvarbstrCellSecurityAccess, pvarbstrDisplayedData, pvarbstrFullResolutionData, pvarbstrStoredData
Returns the labels of the dimension members that the cell’s process unit consists of. The labels are delimited by commas. Process units are described in About Process Units. | |
Returns the labels of the cell’s Account, Intercompany Partner, and Custom 1-4 dimension members. The labels are delimited by commas. | |
Returns a string description of the cell’s calculation status. | |
Returns a string description of the cell’s process management review level. | |
Returns a string description of the cell’s security access rights. | |
The data returned is rounded to the number of decimal places specified for the cell’s account, and includes the user’s thousands separator preference. | |
The following function takes an HFMwDataGrid object and the row and column indexes that identify a cell in the object and returns the string that describes the cell’s calculation status.
Function getCellCalcStatus(cDataGrid, lRow, lCol) Dim sProcessUnit, sPOVDetail, sView, sCalcStatus, sProcessLevel Dim sCellStatus, sSecurityAccess, sDisplayedData Dim sFullResolutionData, sStoredData cDataGrid.GetCellInfo lRow, lCol, sProcessUnit, sPOVDetail, _ sView, sCalcStatus, sProcessLevel, sCellStatus, _ sSecurityAccess, sDisplayedData, sFullResolutionData, _ sStoredData getCellCalcStatus = sCalcStatus End Function