예제 #1
0
 return(new MarkdownFormat(
            BoldStyle,
            ItalicStyle,
            BulletListStyle,
            OrderedListStyle,
            HeadingStyle,
            HeadingOptions,
            TableOptions,
            CodeFenceStyle,
            CodeBlockOptions,
            CharEntityFormat,
            horizontalRuleFormat));
예제 #2
0
 /**
  * Sets the bold style for this font, if the font hasn't been initialized
  *
  * @param boldStyle the bold style
  * @exception WriteException, if this font is already in use elsewhere
  */
 public void setBoldStyle(BoldStyle boldStyle)
 {
     base.setBoldStyle(boldStyle.value);
 }
예제 #3
0
 /**
  * Creates a font of the specified face, point size, bold style,
  * italicisation, underline style, colour, and script
  * style (superscript/subscript)
  *
  * @param ps the point size
  * @param bs the bold style
  * @param us the underline style
  * @param fn the font name
  * @param it the italic flag
  * @param c the colour
  * @param ss the script style
  */
 public WritableFont(FontName fn,
     int ps,
     BoldStyle bs,
     bool it,
     UnderlineStyle us,
     Colour c,
     ScriptStyle ss)
     : base(fn.name, ps, bs.value, it, us.getValue(), c.getValue(), ss.getValue())
 {
 }
예제 #4
0
 /**
  * Creates a font of the specified face, point size, bold style,
  * italicisation, underline style and colour
  *
  * @param ps the point size
  * @param bs the bold style
  * @param us the underline style
  * @param fn the font name
  * @param it italic flag
  * @param c the colour
  */
 public WritableFont(FontName fn,
     int ps,
     BoldStyle bs,
     bool it,
     UnderlineStyle us,
     Colour c)
     : this(fn, ps, bs, it, us, c, ScriptStyle.NORMAL_SCRIPT)
 {
 }
예제 #5
0
        /**
         * Creates a font of the specified face, point size, bold weight and
         * italicised option.
         *
         * @param ps the point size
         * @param bs the bold style
         * @param italic italic flag
         * @param fn the font name
         */
        public WritableFont(FontName fn, int ps, BoldStyle bs, bool italic)
            : this(fn, ps, bs, italic,
			   UnderlineStyle.NO_UNDERLINE,
			   Colour.BLACK,
			   ScriptStyle.NORMAL_SCRIPT)
        {
        }
예제 #6
0
 /**
  * Creates a font of the specified face, point size, bold style,
  * italicisation, underline style, colour, and script
  * style (superscript/subscript)
  *
  * @param ps the point size
  * @param bs the bold style
  * @param us the underline style
  * @param fn the font name
  * @param it the italic flag
  * @param c the colour
  * @param ss the script style
  * @deprecated use jxl.write.WritableFont
  */
 public Font(FontName fn,
     int ps,
     BoldStyle bs,
     bool it,
     UnderlineStyle us,
     Colour c,
     ScriptStyle ss)
     : base(fn,ps,bs,it,us,c,ss)
 {
 }
예제 #7
0
 /**
  * Creates a font of the specified face, point size, bold style,
  * italicisation, underline style and colour
  *
  * @param ps the point size
  * @param bs the bold style
  * @param us the underline style
  * @param fn the font name
  * @param it italic flag
  * @param c the colour
  * @deprecated use jxl.write.WritableFont
  */
 public Font(FontName fn,
     int ps,
     BoldStyle bs,
     bool it,
     UnderlineStyle us,
     Colour c)
     : base(fn,ps,bs,it,us,c)
 {
 }
예제 #8
0
 /**
  * Creates a font of the specified face, point size, bold weight and
  * italicised option.
  *
  * @param ps the point size
  * @param bs the bold style
  * @param italic italic flag
  * @param fn the font name
  * @deprecated use jxl.write.WritableFont
  */
 public Font(FontName fn,int ps,BoldStyle bs,bool italic)
     : base(fn,ps,bs,italic)
 {
 }
예제 #9
0
 /**
  * Creates a font of the specified face, point size and bold style
  *
  * @param ps the point size
  * @param bs the bold style
  * @param fn the font name
  * @deprecated use jxl.write.WritableFont
  */
 public Font(FontName fn,int ps,BoldStyle bs)
     : base(fn,ps,bs)
 {
 }