Intersoft ClientUI Documentation
PropertyListMode Property (UXQueryBuilder)



Gets or sets the value of the PropertyListMode, consisting of All, FilterMemberOnly and FilterMemberAndDataMember.
Syntax
<CategoryAttribute("Common Properties")>
Public Property PropertyListMode As PropertyListMode
Dim instance As UXQueryBuilder
Dim value As PropertyListMode
 
instance.PropertyListMode = value
 
value = instance.PropertyListMode
[CategoryAttribute("Common Properties")]
public PropertyListMode PropertyListMode {get; set;}
[CategoryAttribute("Common Properties")]
public:
property PropertyListMode PropertyListMode {
   PropertyListMode get();
   void set (    PropertyListMode value);
}
Remarks

Property List Mode

PropertyListMode allows UXQueryBuilder to generate properties based on the FilterMemberAttributeIgnoreFilterMemberAttribute, DataMemberAttribute and IgnoreDataMemberAtrtibutePropertyListMode consists of three modes: AllFilterMemberOnly, and FilterMemberAndDataMember. You can specify which properties not to be included during property generation by utilizing the IgnoreFilterMemberAttribute or IgnoreDataMemberAttribute and set the PropertyListMode accordingly.

PropertyListMode.All

By setting PropertyListMode to PropertyListMode.AllUXQueryBuilder will list all properties related to the object model. However, this may cause UXQueryBuilder to list unwanted properties.

PropertyListMode.FilterMemberOnly

Setting PropertyListMode to PropertyListMode.FilterMemberOnly will cause UXQueryBuilder to list all properties with the FilterMemberAttribute.

PropertyListMode.FilterMemberAndDataMember

UXQueryBuilder will list all properties with either FilterMemberAttribute or DataMemberAttribute when PropertyListMode is set to PropertyListMode.FilterMemberAndDataMember.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXQueryBuilder Class
UXQueryBuilder Members

Send Feedback