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

Constructor

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

Syntax

C#
public MetaInfo(
	int id,
	string name,
	MetaConstants..::.MetaType type,
	Object val,
	bool isRequired,
	bool isFixed,
	bool isReadOnly,
	string columnName,
	string sectionName,
	int sectionId
)
Visual Basic (Declaration)
Public Sub New ( _
	id As Integer, _
	name As String, _
	type As MetaConstants..::.MetaType, _
	val As Object, _
	isRequired As Boolean, _
	isFixed As Boolean, _
	isReadOnly As Boolean, _
	columnName As String, _
	sectionName As String, _
	sectionId As Integer _
)
Visual C++
public:
MetaInfo(
	int id, 
	String^ name, 
	MetaConstants..::.MetaType type, 
	Object^ val, 
	bool isRequired, 
	bool isFixed, 
	bool isReadOnly, 
	String^ columnName, 
	String^ sectionName, 
	int sectionId
)

Parameters

id
Type: System..::.Int32
The id of the meta attribute
name
Type: System..::.String
The name of the meta attribute
type
Type: OfficeClip.BusinessLayer.Metabase..::.MetaConstants..::.MetaType
The type of the meta attribute
val
Type: System..::.Object
The value of the meta attribute
isRequired
Type: System..::.Boolean
Shows if the attribute is required
isFixed
Type: System..::.Boolean
Shows if the attribute is fixed
isReadOnly
Type: System..::.Boolean
Shows if the attribute is read-only
columnName
Type: System..::.String
The name of the column
sectionName
Type: System..::.String
The name of the section
sectionId
Type: System..::.Int32
The id of the section

See Also