public class Overflow extends com.aspose.ms.lang.Struct<Overflow> implements com.groupdocs.editor.htmlcss.css.ICssDeclaration
Represents a "overflow" declaration, which specifies whether to clip content, render scrollbars, or display overflowing content when it is too large for its block-level container.
Modifier and Type | Field and Description |
---|---|
static Overflow |
Auto
Depends on the user agent.
|
static Overflow |
Hidden
The content is clipped and no scrollbars are provided.
|
static Overflow |
Inherit |
static Overflow |
Initial |
static String |
Name |
static Overflow |
Scroll
The content is clipped and browsers use scrollbars, whether or not any
content is clipped.
|
static Overflow |
Unset |
static Overflow |
Visible
Content is not clipped, it may be rendered outside the content box.
|
Constructor and Description |
---|
Overflow() |
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
Overflow |
Clone() |
void |
CloneTo(Overflow that) |
boolean |
equals(com.groupdocs.editor.htmlcss.css.ICssDeclaration other) |
boolean |
equals(Object obj) |
boolean |
equals(Overflow other) |
static boolean |
equals(Overflow obj1,
Overflow obj2) |
int |
getAnimationType()
All CSS properties have at least one animation type, which determines,
how they can be animated
|
boolean |
getInherited()
All CSS declarations are divided on inherited or non-inherited, what is
represented by this property
|
String |
getProperty()
In implementing type should return a property name as a string
|
String |
getValue()
In implementing type should return a value in a default string form,
without affecting serialization options
|
int |
hashCode() |
boolean |
isDefault()
In implementing type should define, whether a current value is a default
value of a declaration, or not
|
boolean |
isGlobal()
In implementing type should define, whether a current value is a global
value of a declaration (inherit [initial, unset]), or not
|
static boolean |
op_Equality(Overflow first,
Overflow second)
Checks whether two "Overflow" values are equal
|
static boolean |
op_Inequality(Overflow first,
Overflow second)
Checks whether two "Overflow" values are not equal
|
String |
serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions)
In implementing type returns a serialized representation of an object as
a string
|
void |
serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions,
com.aspose.ms.System.IO.TextWriter output)
In implementing type writes a serialized representation of an object to
the specified output TextWriter implementation
|
static Overflow |
tryFromKeyword(String keyword)
Tries to recognize a specified
keyword as a proper
keyword value of the 'float' and return it on success or NULL on
failure. |
public static final Overflow Auto
Depends on the user agent.
public static final Overflow Hidden
The content is clipped and no scrollbars are provided.
public static final Overflow Inherit
public static final Overflow Initial
public static final String Name
public static final Overflow Scroll
The content is clipped and browsers use scrollbars, whether or not any content is clipped.
public static final Overflow Unset
public static final Overflow Visible
Content is not clipped, it may be rendered outside the content box. Default value.
public void CloneTo(Overflow that)
CloneTo
in class com.aspose.ms.System.ValueType<Overflow>
public final boolean equals(com.groupdocs.editor.htmlcss.css.ICssDeclaration other)
public final boolean equals(Overflow other)
public final int getAnimationType()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
All CSS properties have at least one animation type, which determines, how they can be animated
getAnimationType
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final boolean getInherited()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
All CSS declarations are divided on inherited or non-inherited, what is represented by this property
getInherited
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final String getProperty()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should return a property name as a string
getProperty
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final String getValue()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should return a value in a default string form, without affecting serialization options
getValue
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final boolean isDefault()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should define, whether a current value is a default value of a declaration, or not
isDefault
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public final boolean isGlobal()
com.groupdocs.editor.htmlcss.css.ICssDeclaration
In implementing type should define, whether a current value is a global value of a declaration (inherit [initial, unset]), or not
isGlobal
in interface com.groupdocs.editor.htmlcss.css.ICssDeclaration
public static boolean op_Equality(Overflow first, Overflow second)
Checks whether two "Overflow" values are equal
first
- second
- public static boolean op_Inequality(Overflow first, Overflow second)
Checks whether two "Overflow" values are not equal
first
- second
- public final String serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions)
com.groupdocs.editor.htmlcss.serialization.ISerializable
In implementing type returns a serialized representation of an object as a string
serialize
in interface com.groupdocs.editor.htmlcss.serialization.ISerializable
serializationOptions
- Serialization options. Not all properties
should be used, but argument should not be nullpublic final void serialize(com.groupdocs.editor.htmlcss.serialization.ISerializationOptions serializationOptions, com.aspose.ms.System.IO.TextWriter output)
com.groupdocs.editor.htmlcss.serialization.ISerializable
In implementing type writes a serialized representation of an object to the specified output TextWriter implementation
serialize
in interface com.groupdocs.editor.htmlcss.serialization.ISerializable
serializationOptions
- Serialization options. Not all properties
should be used, but argument should not be nulloutput
- TextWriter instance, to which resultant text will be
written. Should not be null.