コード例 #1
0
        public void Update(int Id,string Uid,short? TxtW,short? TxtH,short? LblW,short? LblH,short? W,short? H)
        {
            DynamicFieldUserCustomSize item = new DynamicFieldUserCustomSize();
            item.MarkOld();
            item.IsLoaded = true;

            item.Id = Id;

            item.Uid = Uid;

            item.TxtW = TxtW;

            item.TxtH = TxtH;

            item.LblW = LblW;

            item.LblH = LblH;

            item.W = W;

            item.H = H;

            item.Save(UserName);
        }
コード例 #2
0
        public void Insert(int Id,string Uid,short? TxtW,short? TxtH,short? LblW,short? LblH,short? W,short? H)
        {
            DynamicFieldUserCustomSize item = new DynamicFieldUserCustomSize();

            item.Id = Id;

            item.Uid = Uid;

            item.TxtW = TxtW;

            item.TxtH = TxtH;

            item.LblW = LblW;

            item.LblH = LblH;

            item.W = W;

            item.H = H;

            item.Save(UserName);
        }