Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property
Charset::setCharset
Method of the class: Charset{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Charset = new Charset(); $Charset->setCharset( $sCharset );
- $sCharset(required)
- .
Charset::setCharset() Charset::setCharset code WC 10.5.0
public function setCharset($sCharset)
{
$sCharset = $sCharset instanceof CSSString ? $sCharset : new CSSString($sCharset);
$this->oCharset = $sCharset;
}