CSJ2K.j2k.image.invcomptransf.InvCompTransf.ToString C# (CSharp) Method

ToString() public method

Returns a string with a descriptive text of which inverse component transformation is used. This can be either "Inverse RCT" or "Inverse ICT" or "No component transformation" depending on the current tile.
public ToString ( ) : System.String
return System.String
        public override System.String ToString()
        {
            switch (transfType)
            {

                case INV_RCT:
                    return "Inverse RCT";

                case INV_ICT:
                    return "Inverse ICT";

                case NONE:
                    return "No component transformation";

                default:
                    throw new System.ArgumentException("Non JPEG 2000 part I" + " component transformation");

            }
        }