/**
* Sets the indentation of this paragraph on the left side.
*
* @param indentation the new indentation
*/
virtual public void SetIndentationLeft(float indentation, bool autoindent)
{
if (autoindent)
{
IndentationLeft = ListSymbol.GetWidthPoint();
}
else
{
IndentationLeft = indentation;
}
}