From cdfc7251bde8347678d355e5fe65fc20e120bc23 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sun, 27 Nov 2011 21:45:19 +0900 Subject: updating docs for 1.0.10a release --- doc/Axlsx/Fill.html | 79 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 46 insertions(+), 33 deletions(-) (limited to 'doc/Axlsx/Fill.html') diff --git a/doc/Axlsx/Fill.html b/doc/Axlsx/Fill.html index 2fcf0aea..4a2cf21e 100644 --- a/doc/Axlsx/Fill.html +++ b/doc/Axlsx/Fill.html @@ -97,15 +97,17 @@
Note: -
-

The recommended way to manage styles in your workbook is to use -Styles#add_style.

+

+The recommended way to manage styles in your workbook is to use +Styles#add_style. +

- -

The Fill is a formatting object that manages the background color, and -pattern for cells.

+

+The Fill is a formatting object that manages the background color, and +pattern for cells. +

@@ -148,8 +150,9 @@ pattern for cells.

-
-

The type of fill.

+

+The type of fill. +

@@ -186,8 +189,9 @@ pattern for cells.

-
-

Creates a new Fill object.

+

+Creates a new Fill object. +

@@ -209,8 +213,9 @@ pattern for cells.

-
-

Serializes the fill.

+

+Serializes the fill. +

@@ -231,8 +236,9 @@ pattern for cells.

- -

Creates a new Fill object

+

+Creates a new Fill object +

@@ -265,8 +271,9 @@ pattern for cells.

— -
-

if the fill_type parameter is not a PatternFill or a GradientFill instance

+

+if the fill_type parameter is not a PatternFill or a GradientFill instance +

@@ -286,9 +293,10 @@ pattern for cells.

# File 'lib/axlsx/stylesheet/fill.rb', line 16
 
-def initialize(fill_type)
-  self.fill_type = fill_type
-end
+def initialize(fill_type) + self.fill_type = fill_type +end + @@ -311,8 +319,9 @@ pattern for cells.

- -

The type of fill

+

+The type of fill +

@@ -346,9 +355,10 @@ pattern for cells.

# File 'lib/axlsx/stylesheet/fill.rb', line 11
 
-def fill_type
-  @fill_type
-end
+def fill_type + @fill_type +end + @@ -370,8 +380,9 @@ pattern for cells.

- -

Serializes the fill

+

+Serializes the fill +

@@ -390,8 +401,9 @@ pattern for cells.

— -
-

The document builder instance this objects xml will be added to.

+

+The document builder instance this objects xml will be added to. +

@@ -425,9 +437,10 @@ pattern for cells.

# File 'lib/axlsx/stylesheet/fill.rb', line 23
 
-def to_xml(xml)
-  xml.fill { @fill_type.to_xml(xml) }
-end
+def to_xml(xml) + xml.fill { @fill_type.to_xml(xml) } +end + @@ -438,9 +451,9 @@ pattern for cells.

-- cgit v1.2.3