Skip to main content

SecurityLoadingLimits Class

The base class that specifies common limits for document loading.

Declaration

public abstract class SecurityLoadingLimits extends JavaObject

Remarks

Refer to the following help topic for additional information: Set Security Loading Limits — PowerPoint Presentation API.

Inherited Members

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
com.devexpress.system.JavaObject
SecurityLoadingLimits

Methods

getMaxFileSize() Method

Returns the maximum allowed file size in bytes.

Declaration

public @Nullable Long getMaxFileSize()

Returns

Type Description

The maximum allowed file size.

getMaxXmlElementCount() Method

Returns the maximum allowed number of XML elements.

Declaration

public @Nullable Long getMaxXmlElementCount()

Returns

Type Description

The maximum allowed number of XML elements.

getMaxXmlElementDepth() Method

Returns the maximum allowed XML element nesting depth.

Declaration

public @Nullable Integer getMaxXmlElementDepth()

Returns

Type Description

The maximum allowed XML element nesting depth.

setMaxFileSize(@Nullable Long value) Method

Sets the maximum allowed file size in bytes.

Declaration

public void setMaxFileSize(@Nullable Long value)

Parameters

Name Type Description
value

The maximum allowed file size.

setMaxXmlElementCount(@Nullable Long value) Method

Sets the maximum allowed number of XML elements.

Declaration

public void setMaxXmlElementCount(@Nullable Long value)

Parameters

Name Type Description
value

The maximum allowed number of XML elements.

setMaxXmlElementDepth(@Nullable Integer value) Method

Sets the maximum allowed XML element nesting depth.

Declaration

public void setMaxXmlElementDepth(@Nullable Integer value)

Parameters

Name Type Description
value

The maximum allowed XML element nesting depth.