CSJ2K.j2k.wavelet.Subband.ToString C# (CSharp) Méthode

ToString() public méthode

Returns subband informations in a string.
public ToString ( ) : System.String
Résultat 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;
        }