Interface RWFormatProperty

  • All Superinterfaces:
    WebProperty

    public interface RWFormatProperty
    extends WebProperty
    RW Format Property objects are extensions of the WebProperty objects. In addition to the WebProperties functionality they support isCopyable and isDefalutCopyable flags. The first one indicates that the property shall be copied when we copy one unit format to another. The second flag indicates that this property shall be copied when we copy unit format to control default format. By definition, all copyable properties are also default-copyable.
    Since:
    MicroStrategy Web 8.0.0
    • Field Detail

      • DEFAULT_COPYABLE_ON_SINGLE_CLICK

        static final int DEFAULT_COPYABLE_ON_SINGLE_CLICK
        Possible value of default copying restriction
        See Also:
        Constant Field Values
    • Method Detail

      • isCopyable

        boolean isCopyable()
        Returns true if this property is copyable.
        Returns:
        true if this property is copyable.
      • isDefaultCopyable

        boolean isDefaultCopyable()
        Returns true if this property is default-copyable.
        Returns:
        true if this property is default-copyable.
      • getDefaultCopyingRestriction

        int getDefaultCopyingRestriction()
        This method specifies restrictions, if any, that should be honored if the property happens to be default copyable. The default value returned is 0 which indicates that there are no restrictions. The possible values returned are
        • #DEFAULT_COPYABLE_ON_SINGLE_CLICK
        Returns:
        restrictions, if any, that should be honored if the property happens to be default copyable.