Spread Windows Forms 12.0 Product Documentation
ItemType Property (DefaultSheetDataModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetDataModel Class : ItemType Property
Gets or sets the type of the object in the list for the list data source.
Syntax
'Declaration
 
Public Property ItemType As Type
'Usage
 
Dim instance As DefaultSheetDataModel
Dim value As Type
 
instance.ItemType = value
 
value = instance.ItemType
public Type ItemType {get; set;}

Property Value

Type object containing type of item
Example
Dim strArray() As String = {"Ronnie", "Jack", "Lori", "Max", "Tricky"}
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5)
dataModel.DataSource = strArray
FpSpread1.ActiveSheet.Models.Data = dataModel
Dim t As Type
t = dataModel.ItemType
ListBox1.Items.Add(t.ToString())
string[] strArray = new string[5] {"Ronnie", "Jack", "Lori", "Max", "Tricky"};
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8);
dataModel.DataSource = strArray;
fpSpread1.ActiveSheet.Models.Data = dataModel;
Type t;
t = dataModel.ItemType;
listBox1.Items.Add(t.ToString()); 
See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members