CSJ2K.j2k.ModuleSpec.setTileCompVal C# (CSharp) Метод

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

Sets value for specified tile-component.
public setTileCompVal ( int t, int c, System value_Renamed ) : void
t int Tie index /// ///
c int Component index /// ///
value_Renamed System
Результат void
        public virtual void setTileCompVal(int t, int c, System.Object value_Renamed)
        {
            if (specType != SPEC_TYPE_TILE_COMP)
            {
                //UPGRADE_TODO: The equivalent in .NET for method 'java.lang.Object.toString' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
                System.String errMsg = "Option whose value is '" + value_Renamed + "' cannot be " + "specified for ";
                switch (specType)
                {

                    case SPEC_TYPE_TILE:
                        errMsg += "components as it is a 'tile only' specific option";
                        break;

                    case SPEC_TYPE_COMP:
                        errMsg += "tiles as it is a 'component only' specific option";
                        break;
                    }
                throw new System.InvalidOperationException(errMsg);
            }
            if (tileCompVal == null)
                tileCompVal = new Dictionary<string, object>();
            specValType[t][c] = SPEC_TILE_COMP;
            tileCompVal["t" + t + "c" + c] = value_Renamed;
        }