HTMLViewer.ZoomTextIn

From Xojo Documentation

Method


HTMLViewer.ZoomTextIn()

New in 2011r2

Supported for all project types and targets.

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

Notes

The reverse action is achieved with the ZoomTextOut 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