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)
  • image_count: (Integer)
  • table_count: (Integer)
  • hidden: (Boolean)
  • is_blank: (Boolean)
  • has_vector_graphics: (Boolean)


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

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

Instance Attribute Details

#has_vector_graphicsBoolean (readonly)

Returns the value of attribute has_vector_graphics.

Returns:

  • (Boolean)


1682
1683
1684
# File 'sig/types.rbs', line 1682

def has_vector_graphics
  @has_vector_graphics
end

#hiddenBoolean (readonly)

Returns the value of attribute hidden.

Returns:

  • (Boolean)


1680
1681
1682
# File 'sig/types.rbs', line 1680

def hidden
  @hidden
end

#image_countInteger (readonly)

Returns the value of attribute image_count.

Returns:

  • (Integer)


1678
1679
1680
# File 'sig/types.rbs', line 1678

def image_count
  @image_count
end

#is_blankBoolean (readonly)

Returns the value of attribute is_blank.

Returns:

  • (Boolean)


1681
1682
1683
# File 'sig/types.rbs', line 1681

def is_blank
  @is_blank
end

#numberInteger (readonly)

Returns the value of attribute number.

Returns:

  • (Integer)


1676
1677
1678
# File 'sig/types.rbs', line 1676

def number
  @number
end

#table_countInteger (readonly)

Returns the value of attribute table_count.

Returns:

  • (Integer)


1679
1680
1681
# File 'sig/types.rbs', line 1679

def table_count
  @table_count
end

#titleString (readonly)

Returns the value of attribute title.

Returns:

  • (String)


1677
1678
1679
# File 'sig/types.rbs', line 1677

def title
  @title
end