Name
pango.TabArray -- create tab array
Synopsis
tabs = pango.TabArray(initial_size, positions_in_pixels)
Function
Creates an array of initial_size tab stops. Tab stops are specified in pixel units if positions_in_pixels is True, otherwise in Pango units. All stops are initially at position 0.

This function returns the newly allocated Pango tab array, which should be freed with ptabarray:Free().

Inputs
initial_size
initial number of tab stops to allocate, can be 0
positions_in_pixels
whether positions are in pixel units
Results
tabs
the newly allocated Pango tab array

Show TOC