Visual Basic (Declaration) | |
---|---|
Public Overloads MustOverride Function Summary( _ ByVal keyName As String _ ) As Object |
Parameters
- keyName
- The key name specifies a particular Summary Table data result.
Return Value
The Summary value or null if the key name is not in the table.See SummaryNames for a description of how to read the Summary Table data results. When calling this function, the array returned must be converted safely to a float[] or double[] type. The example for this function demonstrates how to safely do this.
C# | ![]() |
---|---|
Array result = (Array)Summary([index input]); double[] dblResults = new double[result.Length]; int idx = 0; foreach(var element in result) { dblResults[idx] = Convert.ToDouble(element); ++idx; } |
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)