From 058faf2581970fa18c314ad07f5658adeca32c69 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sun, 27 Nov 2011 22:08:55 +0900 Subject: update to README --- doc/Axlsx/Fill.html | 79 ++++++++++++++++++++++------------------------------- 1 file changed, 33 insertions(+), 46 deletions(-) (limited to 'doc/Axlsx/Fill.html') diff --git a/doc/Axlsx/Fill.html b/doc/Axlsx/Fill.html index 3171e6b2..38b18ba8 100644 --- a/doc/Axlsx/Fill.html +++ b/doc/Axlsx/Fill.html @@ -97,17 +97,15 @@
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.

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

-The type of fill. -

+
+

The type of fill.

@@ -189,9 +186,8 @@ The type of fill. -

-Creates a new Fill object. -

+
+

Creates a new Fill object.

@@ -213,9 +209,8 @@ Creates a new Fill object. -

-Serializes the fill. -

+
+

Serializes the fill.

@@ -236,9 +231,8 @@ Serializes the fill.

-

-Creates a new Fill object -

+ +

Creates a new Fill object

@@ -271,9 +265,8 @@ Creates a new Fill object — -

-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

@@ -293,10 +286,9 @@ if the fill_type parameter is not a PatternFill or a GradientFill instance
# 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 @@ -319,9 +311,8 @@ if the fill_type parameter is not a PatternFill or a GradientFill instance

-

-The type of fill -

+ +

The type of fill

@@ -355,10 +346,9 @@ The type of fill
# File 'lib/axlsx/stylesheet/fill.rb', line 11
 
-def fill_type
-  @fill_type
-end
-
+def fill_type + @fill_type +end @@ -380,9 +370,8 @@ The type of fill

-

-Serializes the fill -

+ +

Serializes the fill

@@ -401,9 +390,8 @@ Serializes the fill — -

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

+
+

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

@@ -437,10 +425,9 @@ The document builder instance this objects xml will be added to.
# 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 @@ -451,9 +438,9 @@ The document builder instance this objects xml will be added to.
-- cgit v1.2.3