HTMLViewer.ZoomTextOut

From Xojo Documentation

Method


HTMLViewer.ZoomTextOut()

New in 2011r2

Supported for all project types and targets.

Reduces the size of the text used to display the HTML page content. You can use ZoomTextOut several times.

Notes

The reverse action is achieved with the ZoomTextIn method.

Example

This example is the Pressed event of a SegmentedControl:

If segmentIndex = 0 Then
HtmlViewer1.ZoomTextIn
ElseIf segmentIndex = 1 Then
HtmlViewer1.ZoomTextOut
End If