From 8cf0296bbc16e8eb535e9af932eed2557d5e66d2 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Thu, 1 Dec 2011 14:11:42 +0900 Subject: removing generated yard docs from repository --- doc/Axlsx/Fill.html | 450 ---------------------------------------------------- 1 file changed, 450 deletions(-) delete mode 100644 doc/Axlsx/Fill.html (limited to 'doc/Axlsx/Fill.html') diff --git a/doc/Axlsx/Fill.html b/doc/Axlsx/Fill.html deleted file mode 100644 index d2ae770c..00000000 --- a/doc/Axlsx/Fill.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - Class: Axlsx::Fill - - — AXLSX - - - - - - - - - - - - - - - - - - - - - - -

Class: Axlsx::Fill - - - -

- -
- -
Inherits:
-
- Object - -
    -
  • Object
  • - - - -
- show all - -
- - - - - - - - - -
Defined in:
-
lib/axlsx/stylesheet/fill.rb
- -
-
- -

Overview

-
- -
- Note: -
-

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.

- - -
-
-
- - -

See Also:

- - -
- -

Instance Attribute Summary (collapse)

- - - - - - -

- Instance Method Summary - (collapse) -

- - - - -
-

Constructor Details

- -
-

- - - (Fill) initialize(fill_type) - - - -

-
- -

Creates a new Fill object

- - -
-
-
-

Parameters:

- - -

Raises:

-
    - -
  • - - - (ArgumentError) - - - - — -
    -

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

    -
    - -
  • - -
- -
- - - - -
-
-
-
-16
-17
-18
-
-
# File 'lib/axlsx/stylesheet/fill.rb', line 16
-
-def initialize(fill_type)
-  self.fill_type = fill_type
-end
-
-
-
- -
- -
-

Instance Attribute Details

- - - - -
-

- - - (PatternFill, GradientFill) fill_type - - - -

-
- -

The type of fill

- - -
-
-
- -

Returns:

- - -
- - - - -
-
-
-
-11
-12
-13
-
-
# File 'lib/axlsx/stylesheet/fill.rb', line 11
-
-def fill_type
-  @fill_type
-end
-
-
-
- -
- - -
-

Instance Method Details

- - -
-

- - - (String) to_xml(xml) - - - -

-
- -

Serializes the fill

- - -
-
-
-

Parameters:

-
    - -
  • - - xml - - - (Nokogiri::XML::Builder) - - - - — -
    -

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

    -
    - -
  • - -
- -

Returns:

-
    - -
  • - - - (String) - - - -
  • - -
- -
- - - - -
-
-
-
-23
-24
-25
-
-
# File 'lib/axlsx/stylesheet/fill.rb', line 23
-
-def to_xml(xml)
-  xml.fill { @fill_type.to_xml(xml) }
-end
-
-
-
- -
- -
- - - - - \ No newline at end of file -- cgit v1.2.3