textAlign - property of the CanvasCtx object
Description:
Horizontal text alignment.
Values:
start (default) - The text starts at the specified position
end - The text ends at the specified position
center - The center of the text is placed at the specified position
left - The text starts at the specified position
right - The text ends at the specified position
Note:
Property access
for read and write.
This property is also functional in
Web panels.
Example:
The
ctx variable represents the drawing canvas (
CanvasCtx). The setup is done on the "
Draw" tab at the beginning of the script of drawing event
onDraw as follows:
var ctx =
pEvent.
GetCtx(1);
JavaScriptSelect and copy to clipboard
ctx.textAlign = "center";