CSJ2K.j2k.wavelet.Subband.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Returns subband informations in a string.
public ToString ( ) : System.String
리턴 System.String
        public override System.String ToString()
        {
            System.String string_Renamed = "w=" + w + ",h=" + h + ",ulx=" + ulx + ",uly=" + uly + ",ulcx=" + ulcx + ",ulcy=" + ulcy + ",idx=" + sbandIdx + ",orient=" + orientation + ",node=" + isNode + ",level=" + level + ",resLvl=" + resLvl + ",nomCBlkW=" + nomCBlkW + ",nomCBlkH=" + nomCBlkH + ",numCb=" + numCb;

            return string_Renamed;
        }