aspose.pdf
Class ListLevelFormat

java.lang.Object
  extended by aspose.pdf.ListLevelFormat

public class ListLevelFormat
extends java.lang.Object

An object to define the format of the list of some level.


Constructor Summary
ListLevelFormat()
          Represents a ListLevelFormat action
 
Method Summary
 java.lang.Object clone()
          Duplicate a new ListLevelFormat object
 float getLeftMargin()
          Gets a float value that indicates the left margin of the list of current level.
 MarginInfo getMargin()
          Gets a MarginInfo object that indicates the margin of the list item.
 int getSubsequentLinesIndent()
          Gets a int value that indicates how many chars are indented for the subsequent lines in the list item.
 TabLeaderType getTabLeaderType()
          Gets a TabLeaderType object that indicates the tab leader type for the list.
 TextInfo getTextInfo()
          Gets the TextInfo object of the list of current level.
 void setLeftMargin(float value)
          Sets a float value that indicates the left margin of the list of current level.
 void setMargin(MarginInfo value)
          Sets a MarginInfo object that indicates the margin of the list item.
 void setSubsequentLinesIndent(int value)
          Sets a int value that indicates how many chars are indented for the subsequent lines in the list item.
 void setTabLeaderType(TabLeaderType value)
          Sets a TabLeaderType object that indicates the tab leader type for the list.
 void setTextInfo(TextInfo value)
          Sets the TextInfo object of the list of current level.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListLevelFormat

public ListLevelFormat()
Represents a ListLevelFormat action

Method Detail

getTextInfo

public TextInfo getTextInfo()
Gets the TextInfo object of the list of current level.


setTextInfo

public void setTextInfo(TextInfo value)
Sets the TextInfo object of the list of current level.

Parameters:
value -

getLeftMargin

public float getLeftMargin()
Gets a float value that indicates the left margin of the list of current level. The unit is point. In XML,the default unit is point,but cm and inch are also supported. For example,"10cm" or "5inch".
NOTE: This property is now obsolete.
Please use Margin property instead. It will be removed 12 months later since release 3.3.1.0 in January 2007. Aspose apologizes for any inconvenience you may have experienced.


setLeftMargin

public void setLeftMargin(float value)
Sets a float value that indicates the left margin of the list of current level. The unit is point. In XML,the default unit is point,but cm and inch are also supported. For example,"10cm" or "5inch".
NOTE: This property is now obsolete.
Please use Margin property instead. It will be removed 12 months later since release 3.3.1.0 in January 2007. Aspose apologizes for any inconvenience you may have experienced.

Parameters:
value -

getMargin

public MarginInfo getMargin()
Gets a MarginInfo object that indicates the margin of the list item.


setMargin

public void setMargin(MarginInfo value)
Sets a MarginInfo object that indicates the margin of the list item.

Parameters:
value -

getTabLeaderType

public TabLeaderType getTabLeaderType()
Gets a TabLeaderType object that indicates the tab leader type for the list. The default value is "Dot".


setTabLeaderType

public void setTabLeaderType(TabLeaderType value)
Sets a TabLeaderType object that indicates the tab leader type for the list. The default value is "Dot".

Parameters:
value -

getSubsequentLinesIndent

public int getSubsequentLinesIndent()
Gets a int value that indicates how many chars are indented for the subsequent lines in the list item. The default value is 6.


setSubsequentLinesIndent

public void setSubsequentLinesIndent(int value)
Sets a int value that indicates how many chars are indented for the subsequent lines in the list item. The default value is 6.

Parameters:
value -

clone

public java.lang.Object clone()
Duplicate a new ListLevelFormat object

Overrides:
clone in class java.lang.Object