Style - Scoped, Global

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 20분
  • Creates a style for defining properties such font size, border, and alignment. You can apply the same style to multiple objects simultaneously.

    This API is part of the ServiceNow PDF Generation Utilities plugin (com.snc.apppdfgenerator) and is provided within the sn_pdfgeneratorutils namespace. The plugin is activated by default.

    This API is a component used with the Document API to generate a PDF.

    You can apply custom styles to the following API elements:

    Style - Style()

    Instantiates a new Style object.

    표 1. Parameters
    Name Type Description
    None

    The following examples shows how to create a Style object that you can add to a Cell, Paragraph or Table element.

    var style = new sn_pdfgeneratorutils.Style();

    Style – setBackgroundColor(Color color)

    Specifies a background color of an element.

    표 2. Parameters
    Name Type Description
    color Color Background color.
    표 3. Returns
    Type Description
    None

    The following example shows how to set element background color. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var color = new sn_pdfgeneratorutils.Color([1, 0.9, 0.9]); // provided as array of RGB float values
    
    style.setBackGroundColor(color);

    Style – setBold()

    Sets a style to bold font.

    표 4. Parameters
    Name Type Description
    None
    표 5. Returns
    Type Description
    None

    The following example shows how to set a style to bold font.

    var style = new sn_pdfgeneratorutils.Style();
    style.setBold();

    Style – setBorder(Number width)

    Sets the style border on all four sides of an element.

    표 6. Parameters
    Name Type Description
    width Number Style border width in points.
    표 7. Returns
    Type Description
    None

    The following example shows how to set a style border. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 2;
    
    style.setBorder(width);

    Style – setBorderBottom(Number width)

    Sets the style border to the bottom of an element.

    표 8. Parameters
    Name Type Description
    width Number Style border width in points.
    표 9. Returns
    Type Description
    None

    The following example shows how to set a style border to the bottom of an element. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 2;
    
    style.setBorderBottom(width);

    Style – setBorderLeft(Number width)

    Sets the style border on the left side of an element.

    표 10. Parameters
    Name Type Description
    width Number Style border width in points.
    표 11. Returns
    Type Description
    None

    The following example shows how to set a style border on the left side of an element. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 2;
    
    style.setBorderLeft(width);

    Style – setBorderRight(Number width)

    Sets the style border on the right side of an element.

    표 12. Parameters
    Name Type Description
    width Number Style border width in points.
    표 13. Returns
    Type Description
    None

    The following example shows how to set a style border on the right side of an element. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 2;
    
    style.setBorderRight(width);

    Style – setBorderTop(Number width)

    Sets the style border to the top of an element.

    표 14. Parameters
    Name Type Description
    width Number Style border width in points.
    표 15. Returns
    Type Description
    None

    The following example shows how to set a style border to the top of an element. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 2;
    
    style.setBorderTop(width);

    Style – setColoredBorder(Number width, Color color)

    Sets style border with color on all four sides of an element.

    표 16. Parameters
    Name Type Description
    width Number Style border width in points.
    color Color Style border color.
    표 17. Returns
    Type Description
    None

    The following example shows how to set a style border with color. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 1.0;
    var borderColor = new sn_pdfgeneratorutils.Color([0.8,0.8,0.8]);
    
    style.setColoredBorder(width, borderColor);

    Style – setColoredBorderBottom(Number width, Color color)

    Sets style border with color to the bottom side of an element.

    표 18. Parameters
    Name Type Description
    width Number Style border width in points.
    color Color Style border color.
    표 19. Returns
    Type Description
    None

    The following example shows how to set a style border to the bottom of an element.For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 1.0;
    var borderColor = new sn_pdfgeneratorutils.Color([0.8,0.8,0.8]);
    
    style.setColoredBorderBottom(width, borderColor);

    Style – setColoredBorderLeft(Number width, Color color)

    Sets style border with color on the left side of an element.

    표 20. Parameters
    Name Type Description
    width Number Style border width in points.
    color Color Style border color.
    표 21. Returns
    Type Description
    None

    The following example shows how to set a style border. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 1.0;
    var borderColor = new sn_pdfgeneratorutils.Color([0.8,0.8,0.8]);
    
    style.setColoredBorderLeft(width, borderColor);

    Style – setColoredBorderRight(Number width, Color color)

    Sets style border with color on the right side of an element.

    표 22. Parameters
    Name Type Description
    width Number Style border width in points.
    color Color Style border color.
    표 23. Returns
    Type Description
    None

    The following example shows how to set a style border with color. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 1.0;
    var borderColor = new sn_pdfgeneratorutils.Color([0.8,0.8,0.8]);
    
    style.setColoredBorderRight(width, borderColor);

    Style – setColoredBorderTop(Number width, Color color)

    Sets style border with color to the top side of an element.

    표 24. Parameters
    Name Type Description
    width Number Style border width in points.
    color Color Style border color.
    표 25. Returns
    Type Description
    None

    The following example shows how to set a style border. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var width = 1.0;
    var borderColor = new sn_pdfgeneratorutils.Color([0.8,0.8,0.8]);
    
    style.setColoredBorderTop(width, borderColor);

    Style – setFontColor(Color color)

    Sets a font color.

    표 26. Parameters
    Name Type Description
    color Color Font color.
    표 27. Returns
    Type Description
    None

    The following example shows how to set a font color. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var fontColor = new sn_pdfgeneratorutils.Color([1,0.5,0.5]);
    
    style.setFontColor(fontColor);

    Style – setFontSize(Number fontSize)

    Sets a style font size.

    표 28. Parameters
    Name Type Description
    fontSize Number Font size in points.
    표 29. Returns
    Type Description
    None

    The following example shows how to set a font size.

    var style = new sn_pdfgeneratorutils.Style();
    
    style.setFontSize(12);

    Style – setHorizontalAlignment(String alignment)

    Sets the horizontal alignment for a style.

    표 30. Parameters
    Name Type Description
    alignment String Horizontal alignment setting.
    Valid values:
    • center: Align contents to the center.
    • left: Align contents to the left.
    • right: Align contents to the right.
    표 31. Returns
    Type Description
    None

    The following example shows how to set horizontal alignment on an element. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var alignment = "Center";
    
    style.setHorizontalAlignment(alignment);
    

    Style – setItalic()

    Sets a style to italic font.

    표 32. Parameters
    Name Type Description
    None
    표 33. Returns
    Type Description
    None

    The following example shows how to set an element style to an italic font.

    var style = new sn_pdfgeneratorutils.Style();
    style.setItalic();

    Style – setPadding(Number padding)

    Sets the padding of all four sides of an element to the same width.

    표 34. Parameters
    Name Type Description
    padding Number Padding width in points as a decimal value.
    표 35. Returns
    Type Description
    None

    The following example shows how to set bottom style to 2.5 points. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var padding = 2.5;
    
    style.setPadding(padding);

    Style – setPaddingBottom(Number padding)

    Sets the value of the bottom padding width of an element.

    표 36. Parameters
    Name Type Description
    padding Number Padding width in points as a decimal value.
    표 37. Returns
    Type Description
    None

    The following example shows how to set bottom element padding to 2.5 points. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var padding = 2.5;
    
    style.setPaddingBottom(padding);

    Style – setPaddingLeft(Number padding)

    Sets the value of the left padding width of an element.

    표 38. Parameters
    Name Type Description
    padding Number Padding width in points as a decimal value.
    표 39. Returns
    Type Description
    None

    The following example shows how to set left element padding to 2.5 points. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var padding = 2.5;
    
    style.setPaddingLeft(padding);

    Style – setPaddingRight(Number padding)

    Sets the value of the right padding width of a style.

    표 40. Parameters
    Name Type Description
    padding Number Padding width in points as a decimal value.
    표 41. Returns
    Type Description
    None

    The following example shows how to set right element padding to 2.5 points. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var padding = 2.5;
    
    style.setPaddingRight(padding);

    Style – setPaddingTop(Number padding)

    Sets the value of the top padding width of an element.

    표 42. Parameters
    Name Type Description
    padding Number Padding width in points as a decimal value.
    표 43. Returns
    Type Description
    None

    The following example shows how to set top element padding to 2.5 points. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var padding = 2.5;
    
    style.setPaddingTop(padding);

    Style – setTextAlignment(String alignment)

    Sets the text alignment for a style.

    표 44. Parameters
    Name Type Description
    alignment String Text alignment position.
    Valid values:
    • text-center: Aligns text to the center.
    • text-justified: Modifies the space between characters to completely fill text between the left and right sides. The final line is left-aligned.
    • text-justified-all: Justifies text alignment including the final line.
    • text-left: Align text to the left.
    • text-right: Align text to the right.
    표 45. Returns
    Type Description
    None

    The following example shows how to set the element text to center alignment.

    var style = new sn_pdfgeneratorutils.Style();
    
    String alignment = "text-center";
    
    style.setTextAlignment(alignment);

    Style – setVerticalAlignment(String alignment)

    Sets the vertical alignment for this element.

    표 46. Parameters
    Name Type Description
    alignment String Vertical alignment setting.
    Valid values:
    • bottom: Aligns contents to the bottom.
    • mid: Aligns contents to the center.
    • top: Aligns contents to the top.
    표 47. Returns
    Type Description
    None

    The following example shows how to set vertical alignment on an element. For a document usage example, see Document API.

    var style = new sn_pdfgeneratorutils.Style();
    
    var alignment = "Mid";
    
    style.setVerticalAlignment(alignment);