MergeType

Contents
[ ]

Inheritance: java.lang.Object, java.lang.Enum

public enum MergeType extends Enum<MergeType>

Enumerates the type of cell merge.

Fields

Field Description
NONE Indicates that the cell does not merge.
HORIZONTAL Indicates that the cell merges along the row.
VERTICAL Indicates that the cell merges along the column.
RANGE Indicates that the cell merges along the row and column, creating an area.

Methods

Method Description
values()
valueOf(String name)

NONE

public static final MergeType NONE

Indicates that the cell does not merge.

HORIZONTAL

public static final MergeType HORIZONTAL

Indicates that the cell merges along the row.

VERTICAL

public static final MergeType VERTICAL

Indicates that the cell merges along the column.

RANGE

public static final MergeType RANGE

Indicates that the cell merges along the row and column, creating an area.

values()

public static MergeType[] values()

Returns: com.groupdocs.comparison.cells.style.MergeType[]

valueOf(String name)

public static MergeType valueOf(String name)

Parameters:

Parameter Type Description
name java.lang.String

Returns: MergeType