// Token: 0x06002CB7 RID: 11447 RVA: 0x000C9A92 File Offset: 0x000C7C92
 void IFixedNavigate.NavigateAsync(string elementID)
 {
     if (this.IsPageCountValid)
     {
         FixedHyperLink.NavigateToElement(this, elementID);
         return;
     }
     this._navigateAfterPagination = true;
     this._navigateFragment        = elementID;
 }
Example #2
0
 void IFixedNavigate.NavigateAsync(string elementID)
 {
     if (IsPageCountValid == true)
     {
         FixedHyperLink.NavigateToElement(this, elementID);
     }
     else
     {
         _navigateAfterPagination = true;
         _navigateFragment        = elementID;
     }
 }
Example #3
0
 // Token: 0x06002B8F RID: 11151 RVA: 0x000C6D50 File Offset: 0x000C4F50
 private void _OnChildPaginationCompleted(object sender, EventArgs args)
 {
     if (this.IsPageCountValid)
     {
         this._paginator.NotifyPaginationCompleted(EventArgs.Empty);
         if (this._navigateAfterPagination)
         {
             FixedHyperLink.NavigateToElement(this, this._navigateFragment);
             this._navigateAfterPagination = false;
         }
     }
 }
Example #4
0
        //----------------------------------------------------------------------
        // Child IDP Events
        //----------------------------------------------------------------------
        private void _OnChildPaginationCompleted(object sender, EventArgs args)
        {
            DocumentsTrace.FixedDocumentSequence.IDF.Trace(string.Format("_OnChildPaginationCompleted"));
            if (IsPageCountValid)
            {
                _paginator.NotifyPaginationCompleted(EventArgs.Empty);

                if (_navigateAfterPagination)
                {
                    FixedHyperLink.NavigateToElement(this, _navigateFragment);
                    _navigateAfterPagination = false;
                }
            }
        }
 // Token: 0x06002CD9 RID: 11481 RVA: 0x000CA170 File Offset: 0x000C8370
 private void OnInitialized(object sender, EventArgs e)
 {
     if (this._navigateAfterPagination)
     {
         FixedHyperLink.NavigateToElement(this, this._navigateFragment);
         this._navigateAfterPagination = false;
     }
     this.ValidateDocStructure();
     if (this.PageCount > 0)
     {
         DocumentPage page = this.GetPage(0);
         if (page != null)
         {
             FixedPage fixedPage = page.Visual as FixedPage;
             if (fixedPage != null)
             {
                 base.Language = fixedPage.Language;
             }
         }
     }
     this._paginator.NotifyPaginationCompleted(e);
 }
Example #6
0
 // Token: 0x06002D87 RID: 11655 RVA: 0x000CD1E4 File Offset: 0x000CB3E4
 void IFixedNavigate.NavigateAsync(string elementID)
 {
     FixedHyperLink.NavigateToElement(this, elementID);
 }