Class PdfBooleanObject
Represents an indirect boolean 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 PdfBooleanObject : PdfObject, ICloneable
- Inheritance
-
PdfBooleanObject
- Implements
- Inherited Members
Constructors
PdfBooleanObject()
Initializes a new instance of the PdfBooleanObject class.
public PdfBooleanObject()
PdfBooleanObject(PdfDocument, bool)
Initializes a new instance of the PdfBooleanObject class.
public PdfBooleanObject(PdfDocument document, bool value)
Parameters
document
PdfDocumentvalue
bool
PdfBooleanObject(bool)
Initializes a new instance of the PdfBooleanObject class.
public PdfBooleanObject(bool value)
Parameters
value
bool
Properties
Value
Gets the value of this instance as boolean value.
public bool Value { get; }
Property Value
Methods
ToString()
Returns "false" or "true".
public override string ToString()