internal static extern void Internal_SetOptions(IntPtr obj, ref FontOptions value);
/// <summary> /// Tests for equality between two objects. /// </summary> /// <param name="other">The other object to compare.</param> /// <returns><c>true</c> if this object has the same value as <paramref name="other" />; otherwise, <c>false</c> </returns> public bool Equals(FontOptions other) { return(Hinting == other.Hinting && Flags == other.Flags); }
internal static extern void Internal_GetOptions(IntPtr obj, out FontOptions resultAsRef);