'Declaration
Function GetArrayFormulaInfo( _ ByRef row1 As System.Integer, _ ByRef col1 As System.Integer, _ ByRef row2 As System.Integer, _ ByRef col2 As System.Integer _ ) As System.Boolean
'Usage
Dim instance As IArguments Dim row1 As System.Integer Dim col1 As System.Integer Dim row2 As System.Integer Dim col2 As System.Integer Dim value As System.Boolean value = instance.GetArrayFormulaInfo(row1, col1, row2, col2)
System.bool GetArrayFormulaInfo( ref System.int row1, ref System.int col1, ref System.int row2, ref System.int col2 )
function GetArrayFormulaInfo( var row1: System.Integer; var col1: System.Integer; var row2: System.Integer; var col2: System.Integer ): System.Boolean;
function GetArrayFormulaInfo( row1 : System.int, col1 : System.int, row2 : System.int, col2 : System.int ) : System.boolean;
Parameters
- row1
- Will be set to the zero based upper row of the array formula currently being evaluated, or left unchanged if the formula currently being evaluated is not an array formula.
- col1
- Will be set to the zero based left column of the array formula currently being evaluated, or left unchanged if the formula currently being evaluated is not an array formula.
- row2
- Will be set to the zero based lower row of the array formula currently being evaluated, or left unchanged if the formula currently being evaluated is not an array formula.
- col2
- Will be set to the zero based right column of the array formula currently being evaluated, or left unchanged if the formula currently being evaluated is not an array formula.
Return Value
true if the formula currently being evaluated is an array formula, or false if the formula currently being evaluated is not an array formula.