1103 lines
48 KiB
XML
1103 lines
48 KiB
XML
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>DevExpress.ExpressApp.ConditionalAppearance.v17.2</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject">
|
|
|
|
<summary>
|
|
<para>An appearance generated by combining all the found conditional appearance rules appropriate for the target UI element.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.#ctor">
|
|
<summary>
|
|
<para>Creates a new instance of the AppearanceObject.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.#ctor(System.Collections.Generic.List`1)">
|
|
<summary>
|
|
<para>Creates a new instance of the AppearanceObject using the specified appearance items collection.
|
|
</para>
|
|
</summary>
|
|
<param name="items">
|
|
A list of <b>IConditionalAppearanceItem</b> objects specifying the appearance to be applied. This list is assigned to the <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.Items"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.BackColor">
|
|
<summary>
|
|
<para>Specifies a background color for the target UI element.
|
|
</para>
|
|
</summary>
|
|
<value>A <b>System.Drawing.Color</b> object that specifies a background color.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.Enabled">
|
|
<summary>
|
|
<para>Specifies an enabled state for the target UI element.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, to enable the target UI element; <b>false</b>, to disable it.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.FontColor">
|
|
<summary>
|
|
<para>Specifies a font color for the target UI element.
|
|
</para>
|
|
</summary>
|
|
<value>A <b>System.Drawing.Color</b> object that specifies a font color.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.FontStyle">
|
|
<summary>
|
|
<para>Specifies a font style for the target UI element.
|
|
</para>
|
|
</summary>
|
|
<value>A <b>System.Drawing.FontStyle</b> enumeration value that specifies a font style.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.Items">
|
|
<summary>
|
|
<para>Provides access to a collection of appearance items that together, form a resulting appearance to be applied.
|
|
</para>
|
|
</summary>
|
|
<value>A list of <b>IConditionalAppearanceItem</b> objects representing appearance customizations of different types.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject.Visibility">
|
|
<summary>
|
|
<para>Specifies a visibility state for the target UI element.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, to make the target UI element visible; <b>false</b>, to make it invisible.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs">
|
|
|
|
<summary>
|
|
<para>Arguments passed to the <see cref="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CustomApplyAppearance"/> and <see cref="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceApplied"/> events.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.#ctor(DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject,System.String,System.String,System.Object,System.Object[],DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor,System.Collections.Generic.List`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ApplyAppearanceEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="appearanceObject">
|
|
An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject"/> representing the appearance applied.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
A UI element whose conditional appearance is about to be refreshed by applying the appropriate rules.
|
|
|
|
</param>
|
|
<param name="contextObjects">
|
|
An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An <b>EvaluatorContextDescriptor</b> object that is used to supply metadata on the specified type to the <b>ExpressionEvaluator</b> objects.
|
|
|
|
</param>
|
|
<param name="appearanceItems">
|
|
A <b>List<IConditionalAppearanceItem></b> list of resulting items that were calculated by each appearance rule.
|
|
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.#ctor(DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject,System.String,System.String,System.Object,System.Object[],DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor,System.Collections.Generic.List`1,DevExpress.ExpressApp.View)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ApplyAppearanceEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="appearanceObject">
|
|
An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject"/> representing the appearance applied.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
A string that is the type of the target UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="contextObjects">
|
|
A string that is the identifier of the UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An <b>EvaluatorContextDescriptor</b> object that is used to supply metadata on the specified type to the <b>ExpressionEvaluator</b> objects.
|
|
|
|
</param>
|
|
<param name="appearanceItems">
|
|
A <b>List<IConditionalAppearanceItem></b> list of resulting items that were calculated by each appearance rule.
|
|
|
|
</param>
|
|
<param name="view">
|
|
A <see cref="T:DevExpress.ExpressApp.View"/> object that is the current View.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.#ctor(DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject,System.String,System.String,System.Object,System.Object[],DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor,System.Collections.Generic.List`1,DevExpress.ExpressApp.Editors.IViewInfo)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ApplyAppearanceEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="appearanceObject">
|
|
An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject"/> representing the appearance applied.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
A string that is the type of the target UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="contextObjects">
|
|
A string that is the identifier of the UI element whose conditional appearance is refreshed.
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An <b>EvaluatorContextDescriptor</b> object that is used to supply metadata on the specified type to the <b>ExpressionEvaluator</b> objects.
|
|
|
|
</param>
|
|
<param name="appearanceItems">
|
|
A <b>List<IConditionalAppearanceItem></b> list of resulting items that were calculated by each appearance rule.
|
|
|
|
</param>
|
|
<param name="view">
|
|
Gets the <b>IViewInfo</b> object that provides information related to the current View.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.AppearanceItems">
|
|
<summary>
|
|
<para>Gets the list of resulting items that were calculated by each appearance rule.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <b>List<IConditionalAppearanceItem></b> list of resulting items that were calculated by each appearance rule.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.AppearanceObject">
|
|
<summary>
|
|
<para>The appearance that is currently applied to the target UI element.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceObject"/> that specifies the appearance currently applied.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.ContextObjects">
|
|
<summary>
|
|
<para>An object(s) to whose property a conditional appearance is currently applied. If the target item is an Action, it's the selected object(s) of the current View.
|
|
|
|
|
|
</para>
|
|
</summary>
|
|
<value>An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.EvaluatorContextDescriptor">
|
|
<summary>
|
|
<para>Gets the <b>EvaluatorContextDescriptor</b> object that is used to supply metadata on the specified type to the <b>ExpressionEvaluator</b> objects.
|
|
</para>
|
|
</summary>
|
|
<value>An <b>EvaluatorContextDescriptor</b> object that is used to supply metadata on the specified type to the <b>ExpressionEvaluator</b> objects.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.Item">
|
|
<summary>
|
|
<para>A UI element whose appearance is about to be refreshed by applying the appropriate conditional appearance rules.
|
|
</para>
|
|
</summary>
|
|
<value>An object representing a UI element to which a conditional appearance is currently applied.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.ItemName">
|
|
<summary>
|
|
<para>The name of the UI element whose appearance is about to be refreshed by applying conditional appearance rules.
|
|
</para>
|
|
</summary>
|
|
<value>A string that is the identifier of the UI element whose conditional appearance is refreshed.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.ItemType">
|
|
<summary>
|
|
<para>The type of the UI element whose appearance is about to be refreshed by applying conditional appearance rules.
|
|
</para>
|
|
</summary>
|
|
<value>A string that is the type of the target UI element whose conditional appearance is refreshed.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.View">
|
|
<summary>
|
|
<para>Gets the current View.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.ExpressApp.View"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ApplyAppearanceEventArgs.ViewInfo">
|
|
<summary>
|
|
<para>Gets the information related to the current View.
|
|
</para>
|
|
</summary>
|
|
<value>Gets the <b>IViewInfo</b> object that provides information related to the current View.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.CollectAppearanceRulesEventArgs">
|
|
|
|
<summary>
|
|
<para>Arguments passed to the <see cref="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CollectAppearanceRules"/> event.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.CollectAppearanceRulesEventArgs.#ctor(System.String,DevExpress.ExpressApp.Editors.IViewInfo,System.Collections.Generic.List`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the CollectAppearanceRulesEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A string that is the identifier of the UI element for which conditional appearance rules are collected.
|
|
|
|
</param>
|
|
<param name="context">
|
|
Gets the <b>IViewInfo</b> object that provides information related to the current View.
|
|
|
|
</param>
|
|
<param name="appearanceRules">
|
|
A list of <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties"/> objects representing conditional appearance rules found for the target UI element in the Application Model.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.CollectAppearanceRulesEventArgs.AppearanceRules">
|
|
<summary>
|
|
<para>Provides access to the list of conditional appearance rules found for the target UI element in the Application Model.
|
|
</para>
|
|
</summary>
|
|
<value>A list of <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties"/> objects representing conditional appearance rules found for the target UI element in the Application Model.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.CollectAppearanceRulesEventArgs.ContextView">
|
|
<summary>
|
|
<para>The View in which the target UI element (view or layout item) is contained or activated (in case an Action is the target UI element).
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.ExpressApp.View"/> object that is the View in which the target UI element (View Item, Layout Item or Group) is contained. If the target UI element is an Action, this View is the one for which it is activated.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.CollectAppearanceRulesEventArgs.Name">
|
|
<summary>
|
|
<para>The name of the UI element for which conditional appearance rules are collected.
|
|
</para>
|
|
</summary>
|
|
<value>A string that is the identifier of the UI element for which conditional appearance rules are collected.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.CollectAppearanceRulesEventArgs.ViewInfo">
|
|
<summary>
|
|
<para>Gets the information related to the current View.
|
|
</para>
|
|
</summary>
|
|
<value>Gets the <b>IViewInfo</b> object that provides information related to the current View.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController">
|
|
|
|
<summary>
|
|
<para>A <see cref="T:DevExpress.ExpressApp.ViewController"/> descendant that applies conditional appearance rules to specified UI elements.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.#ctor">
|
|
<summary>
|
|
<para>Creates an instance of the AppearanceController class.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceActionType">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceApplied">
|
|
<summary>
|
|
<para>Occurs after the conditional appearance is applied to the target UI element.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceBeginUpdate">
|
|
<summary>
|
|
<para>Prevents the AppearanceController from being updated until the <see cref="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceEndUpdate"/> method is called.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceContextAny">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceContextDetailView">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceContextListView">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceEndUpdate">
|
|
<summary>
|
|
<para>Unlocks the AppearanceController after a call to the <see cref="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceBeginUpdate"/> method and resets the rules cache.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceLayoutItemType">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.AppearanceViewItemType">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CollectAppearance">
|
|
<summary>
|
|
<para>Occurs after conditional appearance rules for the target UI element are collected.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CollectAppearanceRules">
|
|
<summary>
|
|
<para>Occurs after conditional appearance rules for the business object represented by the specified View are collected from the Application Model.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CustomApplyAppearance">
|
|
<summary>
|
|
<para>Occurs before the conditional appearance is applied to the target UI element.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CustomCollectAllAppearanceRuleProperties">
|
|
<summary>
|
|
<para>Occurs when appearance rules are collected. Use this event to provide the list of rules from a custom source.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CustomCreateAppearanceRule">
|
|
<summary>
|
|
<para>Occurs when an <b>AppearanceRule</b> object is created.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.CustomGetIsRulePropertiesEmpty">
|
|
<summary>
|
|
<para>Occurs when the Appearance Controller collects the appearance rules and determines whether or not the specific <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties"/> object is empty.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.GetRulesFromModel(DevExpress.ExpressApp.Model.IModelClass)">
|
|
<summary>
|
|
<para>Returns the list of appearance rules declared ion the specified <see cref="T:DevExpress.ExpressApp.Model.IModelClass"/> node.
|
|
</para>
|
|
</summary>
|
|
<param name="classModel">
|
|
An <see cref="T:DevExpress.ExpressApp.Model.IModelClass"/> object that specifies the <b>BOModel</b> | <b><i><Class></i></b> node.
|
|
|
|
</param>
|
|
<returns>A list of <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties"/> properties that specifies the appearance rules.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.IsInRefresh">
|
|
<summary>
|
|
<para>Indicates whether or not the <see cref="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.Refresh"/> method is currently being executed.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if the <b>Refresh</b> method is currently being executed; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.LockCount">
|
|
<summary>
|
|
<para>Gets the number of Appearance Controller updates that are currently in progress.
|
|
</para>
|
|
</summary>
|
|
<value>An integer number of Appearance Controller updates that are currently in progress.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.Refresh">
|
|
<summary>
|
|
<para>Refreshes the conditional appearance provided by the Controllers registered in the Appearance Controller.
|
|
</para>
|
|
</summary>
|
|
<returns><b>true</b>, on successful execution, otherwise - <b>false</b>;
|
|
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.RefreshItemAppearance(DevExpress.ExpressApp.View,System.String,System.String,System.Object,System.Object)">
|
|
<summary>
|
|
<para>Collects and applies the conditional appearance rules appropriate for the specified UI element.
|
|
</para>
|
|
</summary>
|
|
<param name="view">
|
|
A <see cref="T:DevExpress.ExpressApp.View"/> object that is the View in which the target UI element (View Items and Layout Items and Groups) is contained. If the target UI element is an Action, this View is the one for which it is activated.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
A UI element whose conditional appearance is about to be refreshed by applying the appropriate rules.
|
|
|
|
</param>
|
|
<param name="contextObject">
|
|
An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.RefreshItemAppearance(DevExpress.ExpressApp.View,System.String,System.String,System.Object,System.Object,DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor)">
|
|
<summary>
|
|
<para>Collects and applies the conditional appearance rules appropriate for the specified UI element with a context descriptor specified.
|
|
</para>
|
|
</summary>
|
|
<param name="view">
|
|
A <see cref="T:DevExpress.ExpressApp.View"/> object that is the View in which the target UI element (View Item, Layout Item or Group) is contained. If the target UI element is an Action, this View is the one for which it is activated.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
An UI element whose conditional appearance is about to be refreshed by applying the appropriate rules.
|
|
|
|
</param>
|
|
<param name="contextObject">
|
|
An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An EvaluatorContextDescriptor object that is a context descriptor used for checking whether the context object passed as the <i>contextObject</i> parameter satisfies the criteria specified by a rule's <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties.Criteria"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.RefreshItemAppearance(DevExpress.ExpressApp.View,System.String,System.String,System.Object,System.Object[],DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor)">
|
|
<summary>
|
|
<para>Collects and applies the conditional appearance rules appropriate for the specified UI element with a context descriptor specified.
|
|
</para>
|
|
</summary>
|
|
<param name="view">
|
|
A <see cref="T:DevExpress.ExpressApp.View"/> object that is the View in which the target UI element (View Item, Layout Item or Group) is contained. If the target UI element is an Action, this View is the one for which it is activated.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
An UI element whose conditional appearance is about to be refreshed by applying the appropriate rules.
|
|
|
|
</param>
|
|
<param name="contextObjects">
|
|
An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An EvaluatorContextDescriptor object that is a context descriptor used for checking whether the context object passed as the <i>contextObject</i> parameter satisfies the criteria specified by a rule's <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties.Criteria"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.RefreshItemAppearance(DevExpress.ExpressApp.Editors.IViewInfo,System.String,System.String,System.Object,System.Object[],DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor)">
|
|
<summary>
|
|
<para>Collects and applies the conditional appearance rules appropriate for the specified UI element with a context descriptor specified.
|
|
</para>
|
|
</summary>
|
|
<param name="view">
|
|
A <see cref="T:DevExpress.ExpressApp.View"/> object that is the View in which the target UI element (View Item, Layout Item or Group) is contained. If the target UI element is an Action, this View is the one for which it is activated.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
An UI element whose conditional appearance is about to be refreshed by applying the appropriate rules.
|
|
|
|
</param>
|
|
<param name="contextObjects">
|
|
An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An EvaluatorContextDescriptor object that is a context descriptor used for checking whether the context object passed as the <i>contextObject</i> parameter satisfies the criteria specified by a rule's <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties.Criteria"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.RefreshItemAppearance(DevExpress.ExpressApp.Editors.IViewInfo,System.String,System.String,System.Object,System.Object,DevExpress.Data.Filtering.Helpers.EvaluatorContextDescriptor)">
|
|
<summary>
|
|
<para>Collects and applies the conditional appearance rules appropriate for the specified UI element with a context descriptor specified.
|
|
</para>
|
|
</summary>
|
|
<param name="view">
|
|
A <see cref="T:DevExpress.ExpressApp.View"/> object that is the View in which the target UI element (View Item, Layout Item or Group) is contained. If the target UI element is an Action, this View is the one for which it is activated.
|
|
|
|
</param>
|
|
<param name="itemType">
|
|
A string that is the type of the target UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="itemName">
|
|
A string that is the identifier of the UI element whose conditional appearance is about to be refreshed.
|
|
|
|
</param>
|
|
<param name="item">
|
|
An UI element whose conditional appearance is about to be refreshed by applying the appropriate rules.
|
|
|
|
</param>
|
|
<param name="contextObject">
|
|
An object that contains the properties whose controls or layout items are about to be refreshed by applying the appropriate rules. When the target item is an Action, the selected object(s) is passed as this parameter.
|
|
|
|
</param>
|
|
<param name="evaluatorContextDescriptor">
|
|
An EvaluatorContextDescriptor object that is a context descriptor used for checking whether the context object passed as the <i>contextObject</i> parameter satisfies the criteria specified by a rule's <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties.Criteria"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.RegisterController(DevExpress.ExpressApp.ConditionalAppearance.ISupportRefreshItemsAppearance)">
|
|
<summary>
|
|
<para>Registers a Controller to refresh the conditional appearance of its UI elements in common scenarios.
|
|
</para>
|
|
</summary>
|
|
<param name="controller">
|
|
A Controller implementing the <b>ISupportRefreshItemsAppearance</b> interface.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.ResetRulesCache">
|
|
<summary>
|
|
<para>Resets the cache of the rules collected by the Appearance Controller at the current moment.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceController.UnRegisterController(DevExpress.ExpressApp.ConditionalAppearance.ISupportRefreshItemsAppearance)">
|
|
<summary>
|
|
<para>Removes a Controller from the list of registered Controllers.
|
|
</para>
|
|
</summary>
|
|
<param name="controller">
|
|
A Controller implementing the <b>ISupportRefreshItemsAppearance</b> interface.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule">
|
|
|
|
<summary>
|
|
<para>The module contained in the <i>DevExpress.ExpressApp.ConditionalAppearance.v17.2.dll</i> assembly.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule.#ctor">
|
|
<summary>
|
|
<para>Creates an instance of the ConditionalAppearanceModule class.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule.EnableControllersOnLogonWindow">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule.ExtendModelInterfaces(DevExpress.ExpressApp.Model.ModelInterfaceExtenders)">
|
|
<summary>
|
|
<para>Extends the Application Model with the <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IModelConditionalAppearance"/> interface.
|
|
</para>
|
|
</summary>
|
|
<param name="extenders">
|
|
A <b>ModelInterfaceExtenders</b> object that is a collection of Application Model interface extenders.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule.GetModuleUpdaters(DevExpress.ExpressApp.IObjectSpace,System.Version)">
|
|
<summary>
|
|
<para>Returns the list of <see cref="T:DevExpress.ExpressApp.Updating.ModuleUpdater"/> updaters that handle database updates for the ConditionalAppearanceModule module.
|
|
</para>
|
|
</summary>
|
|
<param name="objectSpace">
|
|
An <see cref="T:DevExpress.ExpressApp.IObjectSpace"/> object which represents the Object Space used to update the database.
|
|
|
|
</param>
|
|
<param name="versionFromDB">
|
|
A <b>System.Version</b> object which represents the current database version.
|
|
|
|
</param>
|
|
<returns>An IEnumerable<<see cref="T:DevExpress.ExpressApp.Updating.ModuleUpdater"/>> list of updaters that handle database updates for the ConditionalAppearanceModule module.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.ConditionalAppearanceModule.Setup(DevExpress.ExpressApp.XafApplication)">
|
|
<summary>
|
|
<para>Sets up the ConditionalAppearanceModule after it has been added to the <see cref="P:DevExpress.ExpressApp.XafApplication.Modules"/> collection.
|
|
</para>
|
|
</summary>
|
|
<param name="application">
|
|
An <see cref="T:DevExpress.ExpressApp.XafApplication"/> object that manages an XAF application.
|
|
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceRulesModelNodesGenerator">
|
|
|
|
<summary>
|
|
<para>A Nodes Generator that generates the content of the <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IModelAppearanceRules"/> node.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceRulesModelNodesGenerator.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the AppearanceRulesModelNodesGenerator class.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.IModelAppearanceRules">
|
|
|
|
<summary>
|
|
<para>The <b>AppearanceRules</b> node provides access to the conditional appearance rules defined for the business class.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.IModelConditionalAppearance">
|
|
|
|
<summary>
|
|
<para>Used to extend the Application Model with the <b>AppearanceRules</b> node.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.IModelConditionalAppearance.AppearanceRules">
|
|
<summary>
|
|
<para>Provides access to the <b>AppearanceRules</b> node.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IModelAppearanceRules"/> object representing the <b>AppearanceRules</b> node.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute">
|
|
|
|
<summary>
|
|
<para>Applied to business classes and their properties. Declares a conditional appearance rule.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.#ctor(System.String)">
|
|
<summary>
|
|
<para>Creates a new instance of the AppearanceAttribute class.
|
|
</para>
|
|
</summary>
|
|
<param name="id">
|
|
A string that is the unique identifier for the appearance rule created using the current attribute instance.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.#ctor(System.String,DevExpress.ExpressApp.ConditionalAppearance.AppearanceItemType,System.String)">
|
|
<summary>
|
|
<para>Creates a new instance of the AppearanceAttribute using the specified parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="id">
|
|
A string that is the unique identifier for the appearance rule created using the current attribute instance.
|
|
|
|
</param>
|
|
<param name="appearanceItemType">
|
|
An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceItemType"/> enumeration value specifying the type of UI elements affected by the conditional appearance rule that is created using the current attribute instance.
|
|
|
|
</param>
|
|
<param name="criteria">
|
|
A string that is the criterion for activation of the rule created using the current attribute instance.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Creates a new instance of the AppearanceAttribute using the specified parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="id">
|
|
A string that is the unique identifier for the appearance rule created using the current attribute instance.
|
|
|
|
</param>
|
|
<param name="criteria">
|
|
A string that is the criterion for activation of the rule created using the current attribute instance.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.AppearanceItemType">
|
|
<summary>
|
|
<para>Specifies the type of UI elements affected by the conditional appearance rule created using this attribute.
|
|
</para>
|
|
</summary>
|
|
<value>The string representation of an <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceItemType"/> enumeration value specifying the type of UI elements affected by the conditional appearance rule.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.BackColor">
|
|
<summary>
|
|
<para>Specifies the background color of UI elements affected by the conditional appearance rule generated from this attribute instance.
|
|
</para>
|
|
</summary>
|
|
<value>A string specifying the background color of UI elements affected by the conditional appearance rule. A value should be recognizable by the <a href="http://msdn.microsoft.com/en-us/library/system.drawing.colorconverter.aspx">System.Drawing.ColorConverter</a> class.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Context">
|
|
<summary>
|
|
<para>Specifies the Views representing the activity scope for the conditional appearance rule generated from the current attribute.
|
|
</para>
|
|
</summary>
|
|
<value>A string that is semicolon separated names of the Views in which the conditional appearance rule is in effect.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Criteria">
|
|
<summary>
|
|
<para>Specifies the criteria string used when determining whether <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.TargetItems"/> should be affected by the conditional appearance rule generated from the current attribute.
|
|
</para>
|
|
</summary>
|
|
<value>A string representing the criterion under which the conditional appearance rule is in effect.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.DeclaringType">
|
|
<summary>
|
|
<para>This property is intended for internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Enabled">
|
|
<summary>
|
|
<para>Specifies whether to enable UI elements affected by the conditional appearance rule generated from this attribute instance.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if UI elements affected by the conditional appearance rule must be enabled; otherwise, <b>false</b>.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.FontColor">
|
|
<summary>
|
|
<para>Specifies the font color of <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.TargetItems"/> affected by the conditional appearance rule generated from this attribute instance.
|
|
</para>
|
|
</summary>
|
|
<value>A string specifying the font color of target items affected by the conditional appearance rule. A value should be recognizable by the <a href="http://msdn.microsoft.com/en-us/library/system.drawing.colorconverter.aspx">System.Drawing.ColorConverter</a> class.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.FontStyle">
|
|
<summary>
|
|
<para>Specifies the font style of <see cref="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.TargetItems"/> affected by the conditional appearance rule generated from this attribute instance.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Drawing.FontStyle"/> enumeration value specifying the font style of target items affected by the conditional appearance rule.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Id">
|
|
<summary>
|
|
<para>Specifies the unique identifier for the appearance rule created using the current attribute instance.
|
|
</para>
|
|
</summary>
|
|
<value>A string containing the rule's unique identifier.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Method">
|
|
<summary>
|
|
<para>Specifies the name of the business class method used to determine whether the Conditional Appearance rule generated from this attribute is currently active.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A string specifying the name of the method used to determine whether the rule is active.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Priority">
|
|
<summary>
|
|
<para>Specifies the priority of the conditional appearance rule generated from the current attribute instance. Used when several rules affect the same UI element.
|
|
</para>
|
|
</summary>
|
|
<value>An integer value specifying the volume of the conditional appearance rule.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.TargetItems">
|
|
<summary>
|
|
<para>Specifies the identifiers of UI elements affected by the conditional appearance rule.
|
|
</para>
|
|
</summary>
|
|
<value>A string consisting of is semicolon separated identifiers of the UI elements affected by the conditional appearance rule.
|
|
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute.Visibility">
|
|
<summary>
|
|
<para>Specifies the visibility of UI elements affected by the conditional appearance rule generated from this attribute instance.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.ExpressApp.Editors.ViewItemVisibility"/> enumeration value specifying the visibility of UI elements affected by the conditional appearance rule.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.ExpressApp.ConditionalAppearance.IModelAppearanceRule">
|
|
|
|
<summary>
|
|
<para>The <b>AppearanceRule</b> node defines a particular conditional appearance rule.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.IModelAppearanceRule.Attribute">
|
|
<summary>
|
|
<para>Provides access to the <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute"/> defining the conditional appearance rule represented by the <b>AppearanceRule</b> node.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.IAppearanceRuleProperties"/> object representing the <b>Appearance</b> attribute, which defines the conditional appearance rule represented by the AppearanceRule node.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.ExpressApp.ConditionalAppearance.IModelAppearanceRule.MethodNames">
|
|
<summary>
|
|
<para>Specifies the possible method names to which the <see cref="T:DevExpress.ExpressApp.ConditionalAppearance.AppearanceAttribute"/> can be applied.
|
|
</para>
|
|
</summary>
|
|
<value>An <b>IEnumerable<String></b> collection that are the possible method names to which the <b>Appearance</b> can be applied.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
</members>
|
|
</doc>
|