PdfRpt.ColumnsItemsTemplates.HyperlinkField.getUrl C# (CSharp) Method

getUrl() private method

private getUrl ( PdfRpt.Core.Contracts.CellAttributes attributes ) : string
attributes PdfRpt.Core.Contracts.CellAttributes
return string
        private string getUrl(CellAttributes attributes)
        {
            var url = attributes.RowData.Value.ToSafeString();
            if (!string.IsNullOrEmpty(NavigationUrlPropertyName))
            {
                url = attributes.RowData.TableRowData.GetSafeStringValueOf(NavigationUrlPropertyName);
            }
            return url;
        }