ChartSheet.Visible Property (2007 System)
Visual Studio 2008
Determines whether the object is visible.
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
The following code example uses the Visible property to hide the current Microsoft.Office.Tools.Excel.ChartSheet.
private void HideChartSheet() { Globals.Sheet1.Range["A1", "A5"].Value2 = 22; Globals.Sheet1.Range["B1", "B5"].Value2 = 55; this.SetSourceData(Globals.Sheet1.Range["A1", "B5"], Excel.XlRowCol.xlColumns); this.ChartType = Excel.XlChartType.xl3DBarClustered; this.Visible = Excel.XlSheetVisibility.xlSheetHidden; }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.