WriteWebGL(Environment, Stream, Double, Boolean, Nullable<Color>, String) Constructor

NOTE: This member is now obsolete. Use the constructor that accepts the WriteParams instead.

To stream with deviation constructor. The exported model will be regenerated with specified deviation.
Public Sub New( _ 
ByVal environment As Environment, _ 
ByVal stream As Stream, _ 
ByVal deviation As Double, _ 
Optional ByVal selectedOnly As Boolean = false, _ 
Optional ByVal htmlBodyColor As Nullable(Of Color) = null, _ 
Optional ByVal htmlTemplate As String = null _ 
)
This language is not supported or no code example is available.
public WriteWebGL( 
Environment environment
Stream stream
double deviation
bool selectedOnly = false, 
Nullable<Color> htmlBodyColor = null, 
string htmlTemplate = null 
)
This language is not supported or no code example is available.

Parameters

environment
Environment

The Environment control.

stream
Stream

The file stream.

deviation
double

The maximum deviation

selectedOnly
bool

If true, only selected entities at root level are written.

htmlBodyColor
Nullable<Color>

The Color for the HTML body. It can be null/Nothing.

htmlTemplate
string

A string representing the HTML template for the output. It must contain both EyeshotGeometry and EyeshotScripts html comment tags to work properly.

Remarks
 
The htmlBodyColor will add the bgcolor attribute but it may not work when you use a custom htmlTemplate.
Example
 
         <html>
          
              <script>
                ...
                <!-- EyeshotScripts -->
                ...
              </script>
              <body>
                ...
                <!-- EyeshotGeometry -->
                ...
              </body>
                  
    </html>					

.NET Framework

Supported in: 4.8

In this article

Definition