com.f1j.ss
Interface AlignFormat


public interface AlignFormat
extends AlignFormat

The Alignment Format interface.


Inner classes inherited from class com.f1j.paint.AlignFormat
AlignFormat.EHorizontal, AlignFormat.EOrientation, AlignFormat.EProperty, AlignFormat.EVertical
 
Field Summary
static AlignFormat.EHorizontal eHorizontalCenterAcrossCells
          Center across cells.
static AlignFormat.EHorizontal eHorizontalFill
          Align filled.
static AlignFormat.EHorizontal eHorizontalGeneral
          Align general.
static AlignFormat.EProperty eIndent
          Indent Property
static AlignFormat.EProperty eMergeCells
          Merged Cells Property
 
Fields inherited from class com.f1j.paint.AlignFormat
eHorizontalAlignment, eHorizontalCenter, eHorizontalJustify, eHorizontalLeft, eHorizontalRight, eOrientation, eOrientationClockwise, eOrientationCounterClockwise, eOrientationCustom, eOrientationNone, eOrientationTopToBottom, eVerticalAlignment, eVerticalBottom, eVerticalCenter, eVerticalJustify, eVerticalTop, eWordWrap
 
Method Summary
 int getIndent()
          Returns the indent setting.
 boolean isMergeCells()
          Returns the merge cells setting.
 void setIndent(int indent)
          Sets the indent attribute.
 void setMergeCells(boolean mergeCells)
          Sets the mergeCells attribute.
 
Methods inherited from interface com.f1j.paint.AlignFormat
getHorizontalAlignment, getOrientation, getRotation, getVerticalAlignment, isWordWrap, setHorizontalAlignment, setOrientation, setRotation, setVerticalAlignment, setWordWrap
 
Methods inherited from interface com.f1j.util.FormatBase
isUndefined, isUndefined, isUsed, setUndefined, undefineAll, useAll
 

Field Detail

eMergeCells

public static final AlignFormat.EProperty eMergeCells
Merged Cells Property

eIndent

public static final AlignFormat.EProperty eIndent
Indent Property

eHorizontalGeneral

public static final AlignFormat.EHorizontal eHorizontalGeneral
Align general.

eHorizontalFill

public static final AlignFormat.EHorizontal eHorizontalFill
Align filled.

eHorizontalCenterAcrossCells

public static final AlignFormat.EHorizontal eHorizontalCenterAcrossCells
Center across cells.
Method Detail

isMergeCells

public boolean isMergeCells()
Returns the merge cells setting.
Returns:
boolean. true = cells are merged.
See Also:
setMergeCells(boolean)

setMergeCells

public void setMergeCells(boolean mergeCells)
Sets the mergeCells attribute.
Parameters:
mergeCells - boolean. Indicates whether cells are to be merged.
See Also:
isMergeCells()

getIndent

public int getIndent()
Returns the indent setting.
Returns:
Indent Setting
See Also:
setIndent(int)

setIndent

public void setIndent(int indent)
Sets the indent attribute.
Parameters:
indent - The new indent setting.
See Also:
getIndent()