GoLang CairoFontFace::getType

request it (262)
GoLang replacement for PHP's CairoFontFace::getType [edit | history]



Do you know a GoLang replacement for PHP's CairoFontFace::getType? Write it!

PHP CairoFontFace::getType

PHP original manual for CairoFontFace::getType [ show | php.net ]

CairoFontFace::getType

cairo_font_face_get_type

(PECL cairo >= 0.1.0)

CairoFontFace::getType -- cairo_font_face_get_typeRetrieves the font face type

Description

Object oriented style (method):

public int CairoFontFace::getType ( void )

Procedural style:

int cairo_font_face_get_type ( CairoFontFace $fontface )

This function returns the type of the backend used to create a font face. See CairoFontType class constants for available types.

Parameters

This function has no parameters.

Return Values

A font type that can be any one defined in CairoFontType

Examples

Example #1 CairoFontFace::getType() example

<?php

// Creates the font face
$fontface = new CairoToyFontFace('sans-serif');

// Get the font face type
var_dump($fontface->getType());

?>

The above example will output something similar to:

int(0)

See Also

  • Classname::Method()