Ejemplo n.º 1
0
 /// <summary>Compares two options set for array compatibility.</summary>
 /// <param name="options">other options</param>
 /// <returns>Returns true if the array options of the sets are equal.</returns>
 public bool EqualArrayTypes(iText.Kernel.XMP.Options.PropertyOptions options)
 {
     return(IsArray() == options.IsArray() && IsArrayOrdered() == options.IsArrayOrdered() && IsArrayAlternate(
                ) == options.IsArrayAlternate() && IsArrayAltText() == options.IsArrayAltText());
 }