[]
Gets or sets an action (e.g., hyperlink) associated with the report item.
public Action Action { get; set; }
Type | Description |
---|---|
Action | An Action object representing the action to perform when the report item is clicked. |
var reportItem = new TextBox();
reportItem.Action = new Action { Hyperlink = "http://example.com" };