Class EdgeInsets

  • All Implemented Interfaces:

    
    public final class EdgeInsets
    
                        

    Object represents page insets.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      public final float top
      public final float left
      public final float bottom
      public final float right
    • Constructor Summary

      Constructors 
      Constructor Description
      EdgeInsets() Creates a default EdgeInsets object with all values set to 0.
      EdgeInsets(float top, float left, float bottom, float right) Creates an edge insets object representation.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      String toString()
      int hashCode()
      boolean equals(Object o)
      EdgeInsets inverted()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EdgeInsets

        EdgeInsets()
        Creates a default EdgeInsets object with all values set to 0.
      • EdgeInsets

        EdgeInsets(float top, float left, float bottom, float right)
        Creates an edge insets object representation.
        Parameters:
        top - Top edge insets in PDF points.
        left - Left edge insets in PDF points.
        bottom - Bottom edge insets in PDF points.
        right - Right edge insets in PDF points.