Interface ITreeTableRowLayoutComponent
Represents a row in a tree view that aligns its columns with other rows, based on ITreeTableLayout .
Inherited Members
System.IDisposable.Dispose()
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface ITreeTableRowLayoutComponent : IComponent, IDisposable, INotifyPropertyChanged
Properties
| Improve this Doc View SourceFixedWidthOverrides
Allow overriding the width for specific columns. The key is the index of the column (zero based, so 0 is the first column) and the value is the width.
Declaration
Dictionary<int, float> FixedWidthOverrides { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.Int32, System.Single> | The fixed width overrides. |
RestrictionList
Allows disabling specific entities from changing the overall aligned columns.
Declaration
IRestrictionList RestrictionList { get; }
Property Value
Type | Description |
---|---|
IRestrictionList | The restriction list. |
Table
Gets or sets the table layout.
Declaration
ITreeTableLayout Table { get; set; }
Property Value
Type | Description |
---|---|
ITreeTableLayout | The table layout. |