ShowDataSourceIcon Property
Specifies whether the Datasource icon will be visible on the detail section bar to allow the user to modify the report's data source settings.
public bool ShowDataSourceIcon {get; set;}
'Declaration
Public Property ShowDataSourceIcon As Boolean
Property Value
Boolean. If True, the data source icon will be visible; otherwise, False.
This example demonstrates how to show or hide the data source icon in the section tab for section reports.
private void designer1_Load(object sender, System.EventArgs e)
{
this.designer1.ShowDataSourceIcon = false;
}
Private Sub Designer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Designer1.Load
Me.Designer1.ShowDataSourceIcon = False
End Sub