/// <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(Com.Adobe.Xmp.Options.PropertyOptions options) { return IsArray() == options.IsArray() && IsArrayOrdered() == options.IsArrayOrdered() && IsArrayAlternate() == options.IsArrayAlternate() && IsArrayAltText() == options.IsArrayAltText(); }