void IActionInstance.SetHyperlinkText(string hyperlinkText)
 {
     this.m_hyperlinkText = hyperlinkText;
     if (this.m_hyperlinkText != null)
     {
         ActionInfo owner = this.m_actionDef.Owner;
         this.m_hyperlink = ReportUrl.BuildHyperlinkUrl(owner.RenderingContext, owner.ObjectType, owner.ObjectName, "Hyperlink", owner.RenderingContext.OdpContext.ReportContext, this.m_hyperlinkText);
         if (this.m_hyperlink == null)
         {
             this.m_hyperlinkText = null;
         }
     }
     else
     {
         this.m_hyperlink = null;
     }
 }