Example #1
0
        /** 初期化。
         */
        public void Initialize()
        {
            //コールバック。
            this.callabck = null;

            //表示位置。
            this.view_position_float = 0.0f;

            //アイテム幅。
            this.item_length = 1;

            //表示幅。
            this.view_length = 0;

            //表示インデックス。
            this.viewindex_st = -1;
            this.viewindex_en = -1;

            //リスト数。
            this.listcount = 0;
        }
Example #2
0
 /** コールバック。設定。
  */
 public void SetCallBack(Scroll_Value_CallBack a_callback)
 {
     this.callabck = a_callback;
 }