[This is preliminary documentation and is subject to change.]

The constructor

Namespace:  OfficeClip.BusinessLayer.Metabase
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public MetaFilterInfo(
	string name,
	bool isPrivate,
	bool isOwner,
	int entityId,
	int metaId,
	int filterId,
	MF filter
)
Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	isPrivate As Boolean, _
	isOwner As Boolean, _
	entityId As Integer, _
	metaId As Integer, _
	filterId As Integer, _
	filter As MF _
)
Visual C++
public:
MetaFilterInfo(
	String^ name, 
	bool isPrivate, 
	bool isOwner, 
	int entityId, 
	int metaId, 
	int filterId, 
	MF^ filter
)

Parameters

name
Type: System..::.String
The filter name
isPrivate
Type: System..::.Boolean
true if the filter is private
isOwner
Type: System..::.Boolean
true if the current user is the owner
entityId
Type: System..::.Int32
The entity id
metaId
Type: System..::.Int32
The meta id (usually external id like groupid)
filterId
Type: System..::.Int32
The unique id of the filter
filter
Type: OfficeClip.BusinessLayer.Metabase.Filter..::.MF
the filter object

See Also