PdfChoiceFieldItem Struct
Represents an item for a PdfChoiceField.
public struct PdfChoiceFieldItem : IEquatable<PdfChoiceFieldItem>
Public Structure PdfChoiceFieldItem
Implements IEquatable(Of PdfChoiceFieldItem)
Implements
Properties
ExportValue
Gets the export value of this PdfChoiceFieldItem.
Property Value
- System.String
The export value of this PdfChoiceFieldItem.
Value
Gets the (display) value of this PdfChoiceFieldItem.
Property Value
- System.String
The (display) value of this PdfChoiceFieldItem.
Methods
Equals(PdfChoiceFieldItem)
Determines whether the specified PdfChoiceFieldItem is equal to this PdfChoiceFieldItem instance.
public bool Equals(PdfChoiceFieldItem other)
Public Function Equals(other As PdfChoiceFieldItem) As Boolean
Parameters
other
- PdfChoiceFieldItem
The PdfChoiceFieldItem to compare with this PdfChoiceFieldItem instance.
Returns
- System.Boolean
true if the specified PdfChoiceFieldItem is equal to this PdfChoiceFieldItem instance; otherwise, false.
Equals(Object)
Determines whether the specified System.Object is equal to this PdfChoiceFieldItem instance.
public override bool Equals(object obj)
Public Overrides Function Equals(obj As Object) As Boolean
Parameters
obj
- System.Object
The System.Object to compare with this PdfChoiceFieldItem instance.
Returns
- System.Boolean
true if the specified System.Object is equal to this PdfChoiceFieldItem instance; otherwise, false.
Overrides
GetHashCode()
Returns a hash code for this PdfChoiceFieldItem instance.
Returns
- System.Int32
A hash code for this PdfChoiceFieldItem instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides
ToString()
Returns a System.String that represents this PdfChoiceFieldItem instance.
Returns
- System.String
A System.String that represents this PdfChoiceFieldItem instance.
Overrides
Remarks
This method should be used primarily for debugging purposes and should be considered volatile (format of its return value might change in future versions).
Operators
Equality(PdfChoiceFieldItem, PdfChoiceFieldItem)
Determines whether first
and second
PdfChoiceFieldItems are equal.
public static bool operator ==(PdfChoiceFieldItem first, PdfChoiceFieldItem second)
Public Shared Operator =(first As PdfChoiceFieldItem, second As PdfChoiceFieldItem) As Boolean
Parameters
first
- PdfChoiceFieldItem
The first item.
second
- PdfChoiceFieldItem
The second item.
Returns
- System.Boolean
true if first
and second
items are equal; otherwise, false.
Inequality(PdfChoiceFieldItem, PdfChoiceFieldItem)
Determines whether first
and second
PdfChoiceFieldItems are not equal.
public static bool operator !=(PdfChoiceFieldItem first, PdfChoiceFieldItem second)
Public Shared Operator <>(first As PdfChoiceFieldItem, second As PdfChoiceFieldItem) As Boolean
Parameters
first
- PdfChoiceFieldItem
The first item.
second
- PdfChoiceFieldItem
The second item.
Returns
- System.Boolean
true if first
and second
items are not equal; otherwise, false.