Exago .NET API Documentation
IsVisible Property
Example 
WebReports.Api.Reports Namespace > EntityColumnMetadata Class : IsVisible Property
Determine if this column will be visible in the user interface. Even when not visible, the Entity (Data Object) is still available for reporting.
Syntax
public ConditionalBoolean IsVisible {get; set;}

Property Value

A value from the ConditionalBoolean Enumeration indicating whether the column should be visible or not.

Remarks
Equivalent to the Visible property when editing column metadata for Data Objects in the Admin Console.
Example
Prevent the Last Name column from appearing in the user interface
employees.ColumnMetadatas.Add(new EntityColumnMetadata("LastName")
{
	ColumnType = "String",
	MnemonicName = "Last Name",
	IsVisible = ConditionalBoolean.False
});
See Also

Reference

EntityColumnMetadata Class
EntityColumnMetadata Members