Skip to content

Server APIs – Aras.TreeGridView.Model.CellView

Eric Domke edited this page Apr 6, 2020 · 1 revision

Aras.TreeGridView v12.0.0.17204

BaseView Class

Inheritance objectBaseView

Derived BooleanView, ColorView, DateView, DecimalView, FloatView, IntegerView, ItemView, ListView

public class BaseView
{
  // Constructors
  public BaseView();
}

BooleanView Class

Inheritance objectBaseViewBooleanView

public class BooleanView : BaseView
{
  // Constructors
  public BooleanView();
}

ColorView Class

Inheritance objectBaseViewColorView

public class ColorView : BaseView
{
  // Constructors
  public ColorView();
}

DateView Class

Inheritance objectBaseViewDateView

public class DateView : BaseView
{
  // Constructors
  public DateView();

  // Properties
  public string DateFormat { get; set; }
}

DecimalView Class

Inheritance objectBaseViewDecimalView

public class DecimalView : BaseView
{
  // Constructors
  public DecimalView();

  // Properties
  public int Precision { get; set; }
  public int Scale { get; set; }
}

FloatView Class

Inheritance objectBaseViewFloatView

public class FloatView : BaseView
{
  // Constructors
  public FloatView();
}

IntegerView Class

Inheritance objectBaseViewIntegerView

public class IntegerView : BaseView
{
  // Constructors
  public IntegerView();
}

ItemView Class

Inheritance objectBaseViewItemView

public class ItemView : BaseView
{
  // Constructors
  public ItemView();

  // Properties
  public string Id { get; set; }
  public string TypeName { get; set; }
}

ListView Class

Inheritance objectBaseViewListView

public class ListView : BaseView
{
  // Constructors
  public ListView();

  // Properties
  public string ListValue { get; set; }
  public string MetadataListName { get; set; }
}
Clone this wiki locally