matrixY (ConvolutionFilter.matrixY property)

public matrixY : Number

The y dimension of the matrix (the number of rows in the matrix). The default value is 0.

Availability: ActionScript 1.0; Flash Player 8

Example

The following example displays the matrixY property of filter.

import flash.filters.ConvolutionFilter;
    
var filter:ConvolutionFilter = new ConvolutionFilter(2, 3, [1, 0, 0, 1, 0, 0], 6);
trace(filter.matrixY); // 3