Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

Charset::setCharsetpublicWC 1.0

Method of the class: Charset{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Charset = new Charset();
$Charset->setCharset( $sCharset );
$sCharset(required)
.

Charset::setCharset() code WC 10.5.0

public function setCharset($sCharset)
{
    $sCharset = $sCharset instanceof CSSString ? $sCharset : new CSSString($sCharset);
    $this->oCharset = $sCharset;
}