public:
property int FilterLength {
int get();
void set ( intvalue);
}
'Declaration
Public Property FilterLength As Integer
'Usage
Dim instance As DicomImage
Dim value As Integer
instance.FilterLength = value
value = instance.FilterLength
Remarks
This property is used when DicomImage's FilterMode is set to MovingAverage and it
controls the number of pixel values used in the smoothing calculation. If length is zero then
a suitable value is determined internally based on the zoom, but if FileterLenght is non-zero
then 2 * FilterLength number of pixel values will be used in MovingAverage smoothing calculation.