Interaction.Hyperlink
Posted: Wed Mar 31, 2010 12:14 pm
Is there a way of setting the Interaction.Hyperlink value in code? OR
Set it to a value read from the Database?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
You can use following code:Is there a way of setting the Interaction.Hyperlink value in code?
You can specify following expression in Interaction.Hyperlink property:Set it to a value read from the Database?
Code: Select all
{Customers.Url}
Code: Select all
foreach (Stimulsoft.Report.Dictionary.StiVariable stVar in report.Dictionary.Variables)
{
stVar.ValueObject = "test";
}
Code: Select all
StiComponentsCollections comps = report.GetComponents();
foreach (StiComponent comp in comps)
{
if (condition)
comp.Hyperlink.Value = "test";
}