Click or drag to resize

PdfPortfolioFieldValue Structure

Represents a Portfolio field value that provides the data corresponding to the related PdfPortfolioField in the Fields, and it provides a means of associating a prefix string with that data value. The prefix shall be ignored by the sorting algorithm.
Inheritance Hierarchy
SystemObject
  SystemValueType
    SautinSoft.Pdf.PortfoliosPdfPortfolioFieldValue

Namespace: SautinSoft.Pdf.Portfolios
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.11.26
Syntax
public readonly struct PdfPortfolioFieldValue : IEquatable<PdfPortfolioFieldValue>, 
	IFormattable

The PdfPortfolioFieldValue type exposes the following members.

Constructors
 NameDescription
Public methodPdfPortfolioFieldValue(DateTimeOffset, String) Initializes a new instance of the PdfPortfolioFieldValue structure from the specified DateTimeOffset data and the optional prefix.
Public methodPdfPortfolioFieldValue(Double, String) Initializes a new instance of the PdfPortfolioFieldValue structure from the specified Double data and the optional prefix.
Public methodPdfPortfolioFieldValue(String, String) Initializes a new instance of the PdfPortfolioFieldValue structure from the specified String data and the optional prefix.
Top
Properties
 NameDescription
Public propertyData

(Optional) The PdfPortfolioFieldValue data. The type of data shall match the data type identified by the DataType property of the corresponding PdfPortfolioField.

Possible types: String, DateTimeOffset, Double, or .

Default value: .

Public propertyPrefix

(Optional) A prefix string that shall be concatenated with the text string presented to the user. This entry is ignored when a conforming reader sorts the items in the collection.

Default value: .

Top
Methods
 NameDescription
Public methodEquals(Object) Determines whether the specified Object is equal to this PdfPortfolioFieldValue instance.
(Overrides ValueTypeEquals(Object))
Public methodEquals(PdfPortfolioFieldValue) Determines whether the other PdfPortfolioFieldValue is equal to this PdfPortfolioFieldValue instance.
Public methodGetHashCode Returns a hash code for this PdfPortfolioFieldValue instance.
(Overrides ValueTypeGetHashCode)
Public methodToString Converts the current PdfPortfolioFieldValue to its equivalent string representation.
(Overrides ValueTypeToString)
Public methodToString(String, IFormatProvider) Converts the current PdfPortfolioFieldValue to its equivalent string representation using the specified format and culture-specific format information.
Top
Operators
 NameDescription
Public operatorStatic memberEquality(PdfPortfolioFieldValue, PdfPortfolioFieldValue) Determines whether first and second PdfPortfolioFieldValues are equal.
Public operatorStatic memberInequality(PdfPortfolioFieldValue, PdfPortfolioFieldValue) Determines whether first and second PdfPortfolioFieldValues are not equal.
Top
See Also