Ejemplo n.º 1
0
 // 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);
 }
Ejemplo n.º 2
0
 extern static IntPtr /* NSString */ NSStringFromDirectionalEdgeInsets(NSDirectionalEdgeInsets insets);