Changes between Version 22 and Version 23 of FDORfc60


Ignore:
Timestamp:
Apr 13, 2011, 10:02:50 AM (13 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc60

    v22 v23  
    894894The !FdoTextElementStyle class represents the text style attributes associated to a text element.
    895895
    896 
    897896{{{
    898897class FdoTextElementStyle :
     
    902901public:
    903902    /// \brief
    904     /// Gets the font-family.
     903    /// Gets the font family.
    905904    ///
    906905    /// \remarks
     
    910909    ///
    911910    /// \return
    912     /// Returns the font-family.
     911    /// Returns the fontfamily.
    913912    ///
    914913    FdoString* GetFontFamily() const;
    915914
    916915    /// \brief
    917     /// Sets the font-family.
     916    /// Sets the font family.
    918917    ///
    919918    /// \remarks
     
    922921    /// indicate an ordered list of names to use.
    923922    ///
    924     /// \param fontFamily
    925     /// Input the font-family. Required to be non-empty string.
     923    /// \param font Family
     924    /// Input the fontfamily. Required to be non-empty string.
    926925    ///
    927926    /// \return
     
    931930
    932931    /// \brief
    933     /// Gets the size of the text based on the sum of the font ascender,
     932    /// Gets the size of the text based on the sum of the ascender,
    934933    /// descender and internal leading in points.
    935934    ///
    936935    /// \return
    937     /// Returns the element's font size
     936    /// Returns the element font size
    938937    ///
    939938    double GetFontSize() const;
    940939
    941940    /// \brief
    942     /// Sets the size of the text based on the sum of the font ascender,
     941    /// Sets the size of the text based on the sum of the ascender,
    943942    /// descender and internal leading in points.
    944943    ///
    945944    /// \param fontSize
    946     /// Input the element's font size.
     945    /// Input the element font size.
    947946    ///
    948947    /// \return
     
    960959    ///
    961960    /// \return
    962     /// Returns the element's font size.
     961    /// Returns the elements font size.
    963962    ///
    964963    FdoFontWeightType GetFontWeight() const;
     
    10171016    /// None, underline, line-through and over-line. Underline is drawn
    10181017    /// at the baseline, over-line at the baseline + ascent, line-through
    1019     /// at baseline + (.5 * ascent).
     1018    /// at baseline + (.5 x ascent).
    10201019    ///
    10211020    /// \return
     
    10301029    /// None, underline, line-through and over-line. Underline is drawn
    10311030    /// at the baseline, over-line at the baseline + ascent, line-through
    1032     /// at baseline + (.5 * ascent).
     1031    /// at baseline + (.5 x ascent).
    10331032    ///
    10341033    /// \param value
     
    10471046    /// be specified in the following manner:
    10481047    /// 1. Well known SVG font names such as black, blue, red.     
    1049     /// 2. RGB values specified using function syntax such as rgb(255, 0, 255) is a magenta
     1048    /// 2. RGB values specified using function syntax
    10501049    /// 3. A literal hex value which would be the same as the previous RGB example.
    10511050    ///
     
    10631062    ///
    10641063    /// 1. Well known SVG font names such as black, blue, red.
    1065     /// 2. RGB values specified using function syntax such as rgb(255, 0, 255) is a magenta
     1064    /// 2. RGB values specified using function syntax
    10661065    /// 3. A literal hex value which would be the same as the previous RGB example.
    10671066    ///