粗体

    斜体

    1. $format = new \Vtiful\Kernel\Format($fileHandle);
    2. $italicStyle = $format->italic()->toResource();

    下划线

    函数原型
    实例
    1. $format = new \Vtiful\Kernel\Format($fileHandle);
    2. $underlineStyle = $format->underline(Format::UNDERLINE_SINGLE)->toResource();
    Style

    对齐

    函数原型
    1. align(resource $resourchHandle, Format::const ...$style): \Vtiful\Kernel\Format
    实例
    Style
    1. Format::FORMAT_ALIGN_LEFT; // 水平左对齐
    2. Format::FORMAT_ALIGN_CENTER; // 水平剧中对齐
    3. Format::FORMAT_ALIGN_FILL; // 水平填充对齐
    4. Format::FORMAT_ALIGN_JUSTIFY; // 水平两端对齐
    5. Format::FORMAT_ALIGN_CENTER_ACROSS; // 横向中心对齐
    6. Format::FORMAT_ALIGN_DISTRIBUTED; // 分散对齐
    7. Format::FORMAT_ALIGN_VERTICAL_TOP; // 顶部垂直对齐
    8. Format::FORMAT_ALIGN_VERTICAL_BOTTOM; // 底部垂直对齐
    9. Format::FORMAT_ALIGN_VERTICAL_CENTER; // 垂直剧中对齐
    10. Format::FORMAT_ALIGN_VERTICAL_JUSTIFY; // 垂直两端对齐