IDataLayoutBuilderTBuilder Interface

Interface for a Data-Layout builder that can modify the properties

Definition

Namespace: Articy.Api
Assembly: ArticyApp (in ArticyApp.dll) Version: 1.0.0
C#
public interface IDataLayoutBuilder<out TBuilder> : IBaseDataLayoutBuilder<TBuilder>, 
	IDisposable
Implements
IBaseDataLayoutBuilderTBuilder, IDisposable

Type Parameters

TBuilder
The specialization of the builder

Methods

Apply This will finalize the builder and apply all current changes, only then the underlying objects are stored!
(Inherited from IBaseDataLayoutBuilderTBuilder)
DisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
GetObjectTypeMode Gets the current mode of the object type
(Inherited from IBaseDataLayoutBuilderTBuilder)
GetTemplateMode Gets the current mode of the object template
(Inherited from IBaseDataLayoutBuilderTBuilder)
Ignore This will finalize the builder, but not apply any changes. Use this is if not applying was on purpose to suppress any warnings
(Inherited from IBaseDataLayoutBuilderTBuilder)
IsGroupIncluded Checks if the group is fully currently included
(Inherited from IBaseDataLayoutBuilderTBuilder)
ModifyGroup Set the include mode of a whole group
(Inherited from IBaseDataLayoutBuilderTBuilder)
ModifyProperty(DataLayoutGroup, ObjectPropertyInfo, Boolean) Modify if a property is part of the Data-Layout or not
ModifyProperty(DataLayoutGroup, String, Boolean) Modify if a property is part of the Data-Layout or not
ModifyProperty(ObjectProxy, ObjectPropertyInfo, Boolean) Modify if a property is part of the Data-Layout or not
ModifyProperty(ObjectProxy, String, Boolean) Modify if a property is part of the Data-Layout or not
ModifyProperty(ObjectType, ObjectPropertyInfo, Boolean) Modify if a property is part of the Data-Layout or not
ModifyProperty(ObjectType, String, Boolean) Modify if a property is part of the Data-Layout or not
ModifyTemplate Set the mode of an object template
(Inherited from IBaseDataLayoutBuilderTBuilder)
ModifyType Set the mode of an object type
(Inherited from IBaseDataLayoutBuilderTBuilder)

See Also