Class QueryLayoutEventArgs
Event arguments used by ITreeTableLayout when querying the rows for the layout. Each row should set a new column size for each column with a size smaller than what the row needs.
Inheritance
System.Object
QueryLayoutEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public class QueryLayoutEventArgs
Constructors
| Improve this Doc View SourceQueryLayoutEventArgs()
Initializes a new instance of the QueryLayoutEventArgs class.
Declaration
public QueryLayoutEventArgs()
Properties
| Improve this Doc View SourceColumnSizes
Gets the column sizes. Each row should set a new column size for each column with a size smaller than what the row needs.
Declaration
public List<float> ColumnSizes { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Single> | The column sizes. |