API Help
Eplan.EplApi.DataModel Namespace / StorableObjectsFilter Class
Members Example

StorableObjectsFilter Class
This class represents filter for StorableObjects objects.

The StorableObjectsFilter can be accessed as a property of a Page object or can be used as a parameter for DMObjectsFinder.

Inheritance Hierarchy
Syntax
public class StorableObjectsFilter : AbstractDMObjectFilter 
Example
DMObjectsFinder oFinder = new DMObjectsFinder(m_oTestProject);
StorableObjectsFilter oFilter = new StorableObjectsFilter();
oFilter.Page = m_oTestProject.Pages[10];
StorableObject[] oSO = oFinder.GetStorableObjects(oFilter);

The following example shows how to filter by user-defined properties
MultiLangString mlsTestValue = new MultiLangString();
mlsTestValue.AddString(ISOCode.Language.L_de_DE, "Test043c");
string strPropertyIdentyfingName = "Page.Test043c";
UserDefinedPropertyDefinition oUDPD = UserDefinedPropertyDefinition.Create(m_oProject, strPropertyIdentyfingName, UserDefinedPropertyDefinition.Enums.ClientType.Page);

//set test property
Page oPage = m_oProject.Pages[0];
oPage.Properties[strPropertyIdentyfingName] = mlsTestValue;

//search page with property value
DMObjectsFinder oFinder = new DMObjectsFinder(m_oProject);
PagesFilter oPagesFilter = new PagesFilter();
PagePropertyList oPagePropertyList = new PagePropertyList();
AnyPropertyId oAnyPropertyId = new AnyPropertyId(m_oProject, strPropertyIdentyfingName);
oPagePropertyList[oAnyPropertyId] = mlsTestValue;
oPagesFilter.SetFilteredPropertyList(oPagePropertyList);
Page[] arrPages1 = oFinder.GetPages(oPagesFilter);

Public Constructors
 NameDescription
Public ConstructorOverloaded.   
Top
Public Properties
 NameDescription
Public PropertySets the Page that StorableObjects matching the filter must be placed on.  
Top
Public Methods
 NameDescription
Public MethodDestructor (Inherited from Eplan.EplApi.DataModel.AbstractDMObjectFilter)
Public MethodOverridden. Resets the filter. Filter matches all StorableObjects then.  
Public MethodSets the StorableObjectPropertyList that StorableObjects matching the filter must have.  
Top
See Also