/// <summary>
 /// Awake
 /// </summary>
 private void Awake()
 {
     //デフォルトは無期限タブ
     this.selectedTab = this.unlimitedTab;
     this.tabGroup.Setup();
     this.tabGroup.SetActiveTab(this.selectedTab);
 }
    /// <summary>
    /// タブクリック時
    /// </summary>
    public void OnClickTab(PresentBoxTab tab)
    {
        SoundManager.Instance.PlaySe(SeName.YES);

        //タブ切り替え
        this.selectedTab = tab;

        //一括受け取りボタンの表示設定
        this.SetReceiveAllButtonView();

        //スクロールビュー構築
        this.SetPageNo(this.selectedTab.pageIndex);
    }