WorkbookBase.HTMLProject Property
Gets the Microsoft.Office.Core.HTMLProject in the workbook, which represents a top-level project branch.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntax
'Declaration
Public ReadOnly Property HTMLProject As HTMLProject
public HTMLProject HTMLProject { get; }
Property Value
Type: HTMLProject
The Microsoft.Office.Core.HTMLProject in the workbook, which represents a top-level project branch.
Examples
The following code example uses the HTMLProject property to refresh the HTML project in the workbook.
This example is for a document-level customization.
Private Sub RefreshHTMLProject()
Me.HTMLProject.RefreshDocument(True)
End Sub
private void RefreshHTMLProject()
{
this.HTMLProject.RefreshDocument(true);
}
.NET Framework Security
- 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.