Apple_Exporter\Components\Body::get_default_style PHP Method

get_default_style() private method

Get the default style for the component.
private get_default_style ( ) : array
return array
    private function get_default_style()
    {
        return array('textAlignment' => 'left', 'fontName' => $this->get_setting('body_font'), 'fontSize' => intval($this->get_setting('body_size')), 'lineHeight' => intval($this->get_setting('body_line_height')), 'textColor' => $this->get_setting('body_color'), 'linkStyle' => array('textColor' => $this->get_setting('body_link_color')), 'paragraphSpacingBefore' => 18, 'paragraphSpacingAfter' => 18);
    }