示例#1
0
        private int GetValue(Report rpt)
        {
            OInt oi = rpt.Cache.Get(_key) as OInt;

            return(oi == null? -1: oi.i);
        }
示例#2
0
        internal int GetCurrentColumn(Report rpt)
        {
            OInt cc = rpt.Cache.Get(this, "currentcolumn") as OInt;

            return(cc == null? 0: cc.i);
        }