mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
let's try that again
This commit is contained in:
parent
8425e57937
commit
e6db86025c
|
@ -190,37 +190,37 @@ public:
|
||||||
/// </summary>
|
/// </summary>
|
||||||
bool has_hyperlink() const;
|
bool has_hyperlink() const;
|
||||||
|
|
||||||
// computed formatting
|
// computed formatting
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the result of computed_format().alignment().
|
/// Returns the result of computed_format().alignment().
|
||||||
/// </summary>
|
/// </summary>
|
||||||
alignment computed_alignment() const;
|
class alignment computed_alignment() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the result of computed_format().border().
|
/// Returns the result of computed_format().border().
|
||||||
/// </summary>
|
/// </summary>
|
||||||
border computed_border() const;
|
class border computed_border() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the result of computed_format().fill().
|
/// Returns the result of computed_format().fill().
|
||||||
/// </summary>
|
/// </summary>
|
||||||
fill computed_fill() const;
|
class fill computed_fill() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the result of computed_format().font().
|
/// Returns the result of computed_format().font().
|
||||||
/// </summary>
|
/// </summary>
|
||||||
font computed_font() const;
|
class font computed_font() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the result of computed_format().number_format().
|
/// Returns the result of computed_format().number_format().
|
||||||
/// </summary>
|
/// </summary>
|
||||||
number_format computed_number_format() const;
|
class number_format computed_number_format() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the result of computed_format().protection().
|
/// Returns the result of computed_format().protection().
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protection computed_protection() const;
|
class protection computed_protection() const;
|
||||||
|
|
||||||
// format
|
// format
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the number format of this cell.
|
/// Returns the number format of this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
xlnt::number_format number_format() const;
|
class number_format number_format() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new format in the workbook, sets its number_format
|
/// Creates a new format in the workbook, sets its number_format
|
||||||
|
@ -261,7 +261,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the font applied to the text in this cell.
|
/// Returns the font applied to the text in this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
xlnt::font font() const;
|
class font font() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new format in the workbook, sets its font
|
/// Creates a new format in the workbook, sets its font
|
||||||
|
@ -272,7 +272,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the fill applied to this cell.
|
/// Returns the fill applied to this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
xlnt::fill fill() const;
|
class fill fill() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new format in the workbook, sets its fill
|
/// Creates a new format in the workbook, sets its fill
|
||||||
|
@ -283,7 +283,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the border of this cell.
|
/// Returns the border of this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
xlnt::border border() const;
|
class border border() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new format in the workbook, sets its border
|
/// Creates a new format in the workbook, sets its border
|
||||||
|
@ -294,7 +294,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the alignment of the text in this cell.
|
/// Returns the alignment of the text in this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
xlnt::alignment alignment() const;
|
class alignment alignment() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new format in the workbook, sets its alignment
|
/// Creates a new format in the workbook, sets its alignment
|
||||||
|
@ -305,12 +305,12 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the protection of this cell.
|
/// Returns the protection of this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
xlnt::protection protection() const;
|
class protection protection() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new format in the workbook, sets its protection
|
/// Creates a new format in the workbook, sets its protection
|
||||||
/// to the given protection, and applies the format to this cell.
|
/// to the given protection, and applies the format to this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
void protection(const class protection &protection_);
|
void protection(const class protection &protection_);
|
||||||
|
|
||||||
// style
|
// style
|
||||||
|
|
Loading…
Reference in New Issue
Block a user