Workbook.HTMLProject Property (2007 System)
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.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property HTMLProject As HTMLProject
'Usage
Dim instance As Workbook
Dim value As HTMLProject
value = instance.HTMLProject
[BrowsableAttribute(false)]
public HTMLProject HTMLProject { get; }
[BrowsableAttribute(false)]
public:
property HTMLProject^ HTMLProject {
HTMLProject^ get ();
}
public function get HTMLProject () : HTMLProject
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.