Assembly: Matrix;
The IMatrixQueryResult interface is used to work with data search results in matrix.
IMatrixQueryResult
Use the IMatrixQuery.Result property to get search results. The result contains information about the matrix containing only the values that satisfy conditions of the specified filter. Data is filtered by changing dimension selection. Selection information is given presented in two ways:
One can use the GetSelection and GetSelectionSet methods to get standard selection of a single dimension or all dimensions, respectively.
One can use the Item property to get a bit array, each element of which indicates dimension selection status: True - element is selected, False - element is not selected.
The result will also contain minimum and maximum values in the filtered matrix.
| Property name | Brief description | |
![]() |
Count | The Count property returns the number of bit arrays with information about dimension element selection. |
![]() |
Item | The Item property returns the bit array with information about dimension element selection. |
![]() |
Matrix | The Matrix property returns result of query as a matrix. |
![]() |
MaxValue | The MaxValue property returns the maximum value available in the result. |
![]() |
MinValue | The MinValue property returns the minimum value available in the result. |
| Method name | Brief description | |
![]() |
FindByKey | The FindByKey method searches for a bit array with information about selected elements by dimension key. |
![]() |
GetSelection | The GetSelection method gets the selection that is created for matrix filtering by the specified dimension. |
![]() |
GetSelectionSet | The GetSelectionSet method gets selection by all dimensions that is created for matrix filtering. |
See also: