CSJ2K.j2k.image.forwcomptransf.ForwCompTransf.ToString C# (CSharp) Метод

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

Returns a string with a descriptive text of which forward component transformation is used. This can be either "Forward RCT" or "Forward ICT" or "No component transformation" depending on the current tile.
public ToString ( ) : System.String
Результат System.String
        public override System.String ToString()
        {
            switch (transfType)
            {

                case FORW_RCT:
                    return "Forward RCT";

                case FORW_ICT:
                    return "Forward ICT";

                case NONE:
                    return "No component transformation";

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

            }
        }