CSJ2K.j2k.image.input.ImgReaderPGX.isOrigSigned C# (CSharp) Метод

isOrigSigned() публичный Метод

Returns true if the data read was originally signed in the specified component, false if not.
public isOrigSigned ( int c ) : bool
c int The index of the component, from 0 to N-1. /// ///
Результат bool
        public override bool isOrigSigned(int c)
        {
            // Check component index
            if (c != 0)
                throw new System.ArgumentException();
            return isSigned;
        }