FieldExtensionsMergeVisibleSettings Method

Gets a new list of all the items contained in IList<FieldSetting> with the settings for the indicated visible fields.

Definition

Namespace: Aliquo.Windows.Controls
Assembly: Aliquo.Windows.Controls (in Aliquo.Windows.Controls.dll) Version: 5.0.9179.22656
C#
public static IList<FieldSetting> MergeVisibleSettings(
	this IList<FieldSetting> self,
	IList<Field> visibleFields,
	bool hideMismatch = false
)

Parameters

self  IListFieldSetting
IList<FieldSetting> with the same field.
visibleFields  IListField
IList<Field> with the visible fields.
hideMismatch  Boolean  (Optional)
Indicates that fields that are not in the indicated configuration list should be set to hidden.

Return Value

IListFieldSetting
IList<FieldSetting> with the merge visible settings.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IListFieldSetting. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also