-
Notifications
You must be signed in to change notification settings - Fork 16
Server APIs – Aras.TreeGridView.Model.CellView
Eric Domke edited this page Apr 6, 2020
·
1 revision
Aras.TreeGridView v12.0.0.17204
Inheritance object → BaseView
Derived BooleanView, ColorView, DateView, DecimalView, FloatView, IntegerView, ItemView, ListView
public class BaseView
{
// Constructors
public BaseView();
}
Inheritance object → BaseView → BooleanView
public class BooleanView : BaseView
{
// Constructors
public BooleanView();
}
Inheritance object → BaseView → ColorView
public class ColorView : BaseView
{
// Constructors
public ColorView();
}
Inheritance object → BaseView → DateView
public class DateView : BaseView
{
// Constructors
public DateView();
// Properties
public string DateFormat { get; set; }
}
Inheritance object → BaseView → DecimalView
public class DecimalView : BaseView
{
// Constructors
public DecimalView();
// Properties
public int Precision { get; set; }
public int Scale { get; set; }
}
Inheritance object → BaseView → FloatView
public class FloatView : BaseView
{
// Constructors
public FloatView();
}
Inheritance object → BaseView → IntegerView
public class IntegerView : BaseView
{
// Constructors
public IntegerView();
}
Inheritance object → BaseView → ItemView
public class ItemView : BaseView
{
// Constructors
public ItemView();
// Properties
public string Id { get; set; }
public string TypeName { get; set; }
}
Inheritance object → BaseView → ListView
public class ListView : BaseView
{
// Constructors
public ListView();
// Properties
public string ListValue { get; set; }
public string MetadataListName { get; set; }
}