[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 MetaReportInfo(
	string name,
	string description,
	bool isPrivate,
	bool isOwner,
	int entityId,
	int metaId,
	int reportId,
	ExtMF extFilter,
	Criteria criteria,
	int createdByUserId
)
Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	description As String, _
	isPrivate As Boolean, _
	isOwner As Boolean, _
	entityId As Integer, _
	metaId As Integer, _
	reportId As Integer, _
	extFilter As ExtMF, _
	criteria As Criteria, _
	createdByUserId As Integer _
)
Visual C++
public:
MetaReportInfo(
	String^ name, 
	String^ description, 
	bool isPrivate, 
	bool isOwner, 
	int entityId, 
	int metaId, 
	int reportId, 
	ExtMF^ extFilter, 
	Criteria^ criteria, 
	int createdByUserId
)

Parameters

name
Type: System..::.String
The name of the object
description
Type: System..::.String
The description
isPrivate
Type: System..::.Boolean
True if the information 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 the group id)
reportId
Type: System..::.Int32
The unique id of the report
extFilter
Type: OfficeClip.BusinessLayer.Metabase.Filter..::.ExtMF
The external filter object
criteria
Type: OfficeClip.BusinessLayer.Metabase.Filter..::.Criteria
The criteria object
createdByUserId
Type: System..::.Int32
the created by user

See Also