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

            return(oi == null? -1: oi.i);
        }
コード例 #2
0
ファイル: Body.cs プロジェクト: suryapratap/reportingcloud
        internal int GetCurrentColumn(Report rpt)
        {
            OInt cc = rpt.Cache.Get(this, "currentcolumn") as OInt;

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