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/BorderPr.html | 189 +++++++++++++++++++++--------------------------- 1 file changed, 82 insertions(+), 107 deletions(-) (limited to 'doc/Axlsx/BorderPr.html') diff --git a/doc/Axlsx/BorderPr.html b/doc/Axlsx/BorderPr.html index 5e549bf0..058a03ca 100644 --- a/doc/Axlsx/BorderPr.html +++ b/doc/Axlsx/BorderPr.html @@ -94,9 +94,8 @@

Overview

-

-A border part. -

+ +

A border part.

@@ -128,9 +127,8 @@ A border part. -

-The color of this border part. -

+
+

The color of this border part.

@@ -155,9 +153,8 @@ The color of this border part. -

-The name of this border part. -

+
+

The name of this border part.

@@ -182,9 +179,8 @@ The name of this border part. -

-The syle of this border part. -

+
+

The syle of this border part.

@@ -221,9 +217,8 @@ The syle of this border part. -

-Creates a new Border Part Object. -

+
+

Creates a new Border Part Object.

@@ -245,9 +240,8 @@ Creates a new Border Part Object. -

-Serializes the border part. -

+
+

Serializes the border part.

@@ -268,9 +262,8 @@ Serializes the border part.

-

-Creates a new Border Part Object -

+ +

Creates a new Border Part Object

@@ -291,9 +284,8 @@ Creates a new Border Part Object — -

-a customizable set of options -

+
+

a customizable set of options

@@ -359,12 +351,11 @@ a customizable set of options
# File 'lib/axlsx/stylesheet/border_pr.rb', line 46
 
-def initialize(options={})
-  options.each do |o|
-    self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}="
-  end
-end
-
+def initialize(options={}) + options.each do |o| + self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}=" + end +end @@ -387,9 +378,8 @@ a customizable set of options

-

-The color of this border part. -

+ +

The color of this border part.

@@ -407,9 +397,8 @@ The color of this border part. — -

-The color of this border part. -

+
+

The color of this border part.

@@ -429,10 +418,9 @@ The color of this border part.
# File 'lib/axlsx/stylesheet/border_pr.rb', line 6
 
-def color
-  @color
-end
-
+def color + @color +end @@ -453,26 +441,23 @@ The color of this border part.
Note: -

-The following are allowed -

-
- :start
- :end
- :left
- :right
- :top
- :bottom
- :diagonal
- :vertical
- :horizontal
-
+
+

The following are allowed

+ +
:start
+:end
+:left
+:right
+:top
+:bottom
+:diagonal
+:vertical
+:horizontal
-

-The name of this border part -

+ +

The name of this border part

@@ -490,9 +475,8 @@ The name of this border part — -

-The name of this border part -

+
+

The name of this border part

@@ -512,10 +496,9 @@ The name of this border part
# File 'lib/axlsx/stylesheet/border_pr.rb', line 39
 
-def name
-  @name
-end
-
+def name + @name +end @@ -536,31 +519,28 @@ The name of this border part
Note: -

-The following are allowed -

-
- :none
- :thin
- :medium
- :dashed
- :dotted
- :thick
- :double
- :hair
- :mediumDashed
- :dashDot
- :mediumDashDot
- :dashDotDot
- :mediumDashDotDot
- :slantDashDot
-
+
+

The following are allowed

+ +
:none 
+:thin
+:medium
+:dashed
+:dotted
+:thick
+:double
+:hair 
+:mediumDashed
+:dashDot
+:mediumDashDot
+:dashDotDot
+:mediumDashDotDot
+:slantDashDot
-

-The syle of this border part. -

+ +

The syle of this border part.

@@ -578,9 +558,8 @@ The syle of this border part. — -

-The syle of this border part. -

+
+

The syle of this border part.

@@ -600,10 +579,9 @@ The syle of this border part.
# File 'lib/axlsx/stylesheet/border_pr.rb', line 25
 
-def style
-  @style
-end
-
+def style + @style +end @@ -625,9 +603,8 @@ The syle of this border part.

-

-Serializes the border part -

+ +

Serializes the border part

@@ -646,9 +623,8 @@ Serializes the border part — -

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

+
+

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

@@ -684,12 +660,11 @@ The document builder instance this objects xml will be added to.
# File 'lib/axlsx/stylesheet/border_pr.rb', line 62
 
-def to_xml(xml)
-  xml.send(@name, :style => @style) {
-    @color.to_xml(xml) if @color.is_a? Color
-  } 
-end
-
+def to_xml(xml) + xml.send(@name, :style => @style) { + @color.to_xml(xml) if @color.is_a? Color + } +end @@ -700,9 +675,9 @@ The document builder instance this objects xml will be added to.
-- cgit v1.2.3