Exago .NET API Documentation
IsFilterable Property
Example 
WebReports.Api.Reports Namespace > EntityColumnMetadata Class : IsFilterable Property

Whether this field can be added to reports, as an interactive filter or not at all via the user interface.

This setting affects the availability of the column in the user interface. Filters may still be programmatically added to reports with the API regardless of the setting here.
Syntax
public FilterableType IsFilterable {get; set;}

Property Value

One of the values of the FilterableType Enumeration.
Remarks
Equivalent to the Filterable property when editing column metadata for Data Objects in the Admin Console.
Example
Prevent the Last Name column from being added as an interactive filter
employees.ColumnMetadatas.Add(new EntityColumnMetadata("LastName")
{
	ColumnType = "String",
	MnemonicName = "Last Name",
	IsFilterable = FilterableType.Static
});
See Also

Reference

EntityColumnMetadata Class
EntityColumnMetadata Members