CreateHtmlInfo.rgbMainFile Property
NOTE: This API is now obsolete.
Gets or sets the binary contents of the main HTML file resulting from the document conversion.
Namespace: Microsoft.HtmlTrans
Assembly: Microsoft.HtmlTrans.Interface (in Microsoft.HtmlTrans.Interface.dll)
Syntax
'Declaration
<ObsoleteAttribute("Use CreateDCInfo instead")> _
Public Property rgbMainFile As Byte()
Get
Set
'Usage
Dim instance As CreateHtmlInfo
Dim value As Byte()
value = instance.rgbMainFile
instance.rgbMainFile = value
[ObsoleteAttribute("Use CreateDCInfo instead")]
public byte[] rgbMainFile { get; set; }
Property Value
Type: []
A Byte (8-bit integer) array that contains the main HTML file.
Remarks
The rgbMainFile property contains the binary contents of the main HTML file resulting from the document conversion when the fReturnFileBits argument of the CHICreateHtml method is set to true.
Examples
For a code example that demonstrates the use of the IHtmlTrLoadBalancer and IHtmlTrLauncher interfaces, including the use of the rgbMainFile property, see the CHICreateHtml method.