Class PdfRealObject
Represents an indirect real value. This type is not used by PDFsharp. If it is imported from an external PDF file, the value is converted into a direct object.
public sealed class PdfRealObject : PdfNumberObject, ICloneable
- Inheritance
-
PdfRealObject
- Implements
- Inherited Members
Constructors
PdfRealObject()
Initializes a new instance of the PdfRealObject class.
public PdfRealObject()
PdfRealObject(PdfDocument, double)
Initializes a new instance of the PdfRealObject class.
public PdfRealObject(PdfDocument document, double value)
Parameters
document
PdfDocumentThe document.
value
doubleThe value.
PdfRealObject(double)
Initializes a new instance of the PdfRealObject class.
public PdfRealObject(double value)
Parameters
value
doubleThe value.
Properties
Value
Gets or sets the value.
public double Value { get; set; }
Property Value
Methods
ToString()
Returns the real as a culture invariant string.
public override string ToString()