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/GradientStop.html | 80 +++++++++++++++++++-------------------------- 1 file changed, 33 insertions(+), 47 deletions(-) (limited to 'doc/Axlsx/GradientStop.html') diff --git a/doc/Axlsx/GradientStop.html b/doc/Axlsx/GradientStop.html index 6d4546d7..e17bba97 100644 --- a/doc/Axlsx/GradientStop.html +++ b/doc/Axlsx/GradientStop.html @@ -94,9 +94,8 @@

Overview

-

-The GradientStop object represents a color point in a gradient. -

+ +

The GradientStop object represents a color point in a gradient.

@@ -135,9 +134,8 @@ The GradientStop object represents a color point in a gradient. -

-The color for this gradient stop. -

+
+

The color for this gradient stop.

@@ -162,9 +160,8 @@ The color for this gradient stop. -

-The position of the color. -

+
+

The position of the color.

@@ -201,9 +198,8 @@ The position of the color. -

-Creates a new GradientStop object. -

+
+

Creates a new GradientStop object.

@@ -225,9 +221,8 @@ Creates a new GradientStop object. -

-Serializes the gradientStop. -

+
+

Serializes the gradientStop.

@@ -248,9 +243,8 @@ Serializes the gradientStop.

-

-Creates a new GradientStop object -

+ +

Creates a new GradientStop object

@@ -298,11 +292,10 @@ Creates a new GradientStop object
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 18
 
-def initialize(color, position)
-  self.color = color
-  self.position = position
-end
-
+def initialize(color, position) + self.color = color + self.position = position +end @@ -325,9 +318,8 @@ Creates a new GradientStop object

-

-The color for this gradient stop -

+ +

The color for this gradient stop

@@ -368,10 +360,9 @@ The color for this gradient stop
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 9
 
-def color
-  @color
-end
-
+def color + @color +end @@ -389,9 +380,8 @@ The color for this gradient stop

-

-The position of the color -

+ +

The position of the color

@@ -425,10 +415,9 @@ The position of the color
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 13
 
-def position
-  @position
-end
-
+def position + @position +end @@ -450,9 +439,8 @@ The position of the color

-

-Serializes the gradientStop -

+ +

Serializes the gradientStop

@@ -471,9 +459,8 @@ Serializes the gradientStop — -

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

+
+

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

@@ -505,8 +492,7 @@ The document builder instance this objects xml will be added to.
# File 'lib/axlsx/stylesheet/gradient_stop.rb', line 31
 
-def to_xml(xml) xml.stop(:position => self.position) {self.color.to_xml(xml)} end
-
+def to_xml(xml) xml.stop(:position => self.position) {self.color.to_xml(xml)} end @@ -517,9 +503,9 @@ The document builder instance this objects xml will be added to.
-- cgit v1.2.3