// note: NSDirectionalEdgeInsetsEqualToDirectionalEdgeInsets (UIGeometry.h) is a macro public bool Equals(NSDirectionalEdgeInsets other) { if (Leading != other.Leading) { return(false); } if (Trailing != other.Trailing) { return(false); } if (Top != other.Top) { return(false); } return(Bottom == other.Bottom); }
extern static IntPtr /* NSString */ NSStringFromDirectionalEdgeInsets(NSDirectionalEdgeInsets insets);