Class: Xberg::PageInfo

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePageInfo

Returns a new instance of PageInfo.

Parameters:

  • number: (Integer)
  • title: (String)
  • dimensions: (PageDimensions)
  • image_count: (Integer)
  • table_count: (Integer)
  • hidden: (Boolean)
  • is_blank: (Boolean)
  • has_vector_graphics: (Boolean)


1942
# File 'sig/types.rbs', line 1942

def initialize: (number: Integer, ?title: String, ?dimensions: PageDimensions, ?image_count: Integer, ?table_count: Integer, ?hidden: bool, ?is_blank: bool, has_vector_graphics: bool) -> void

Instance Attribute Details

#dimensionsPageDimensions? (readonly)

Returns the value of attribute dimensions.

Returns:



1935
1936
1937
# File 'sig/types.rbs', line 1935

def dimensions
  @dimensions
end

#has_vector_graphicsBoolean (readonly)

Returns the value of attribute has_vector_graphics.

Returns:

  • (Boolean)


1940
1941
1942
# File 'sig/types.rbs', line 1940

def has_vector_graphics
  @has_vector_graphics
end

#hiddenBoolean? (readonly)

Returns the value of attribute hidden.

Returns:

  • (Boolean, nil)


1938
1939
1940
# File 'sig/types.rbs', line 1938

def hidden
  @hidden
end

#image_countInteger? (readonly)

Returns the value of attribute image_count.

Returns:

  • (Integer, nil)


1936
1937
1938
# File 'sig/types.rbs', line 1936

def image_count
  @image_count
end

#is_blankBoolean? (readonly)

Returns the value of attribute is_blank.

Returns:

  • (Boolean, nil)


1939
1940
1941
# File 'sig/types.rbs', line 1939

def is_blank
  @is_blank
end

#numberInteger (readonly)

Returns the value of attribute number.

Returns:

  • (Integer)


1933
1934
1935
# File 'sig/types.rbs', line 1933

def number
  @number
end

#table_countInteger? (readonly)

Returns the value of attribute table_count.

Returns:

  • (Integer, nil)


1937
1938
1939
# File 'sig/types.rbs', line 1937

def table_count
  @table_count
end

#titleString? (readonly)

Returns the value of attribute title.

Returns:

  • (String, nil)


1934
1935
1936
# File 'sig/types.rbs', line 1934

def title
  @title
end