matrixX (ConvolutionFilter.matrixX property)

public matrixX : Number

The x dimension of the matrix (the number of columns in the matrix). The default value is 0.

Availability: ActionScript 1.0; Flash Player 8

Example

The following example displays the matrixX property of filter.

import flash.filters.ConvolutionFilter;

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