iTextSharp.text.pdf.ByteBuffer.FormatDouble C# (CSharp) Метод

FormatDouble() публичный статический Метод

public static FormatDouble ( double d ) : string
d double
Результат string
        public static string FormatDouble(double d)
        {
            return FormatDouble(d, null);
        }

Same methods

ByteBuffer::FormatDouble ( double d, ByteBuffer buf ) : string

Usage Example

Пример #1
0
        // other methods

        /**
         * Increments the value of the <CODE>PdfNumber</CODE>-object with 1.
         */

        virtual public void Increment()
        {
            value  += 1.0;
            Content = ByteBuffer.FormatDouble(value);
        }
All Usage Examples Of iTextSharp.text.pdf.ByteBuffer::FormatDouble