iTextSharp.text.DocWriter.SetMargins C# (CSharp) Метод

SetMargins() публичный Метод

Sets the margins.
This does nothing. Has to be overridden if needed.
public SetMargins ( float marginLeft, float marginRight, float marginTop, float marginBottom ) : bool
marginLeft float the margin on the left
marginRight float the margin on the right
marginTop float the margin on the top
marginBottom float the margin on the bottom
Результат bool
        public virtual bool SetMargins(float marginLeft, float marginRight, float marginTop, float marginBottom)
        {
            return false;
        }