Class GridFunctionParameter
Grid menu function parameter, to pass information to clr grid calls
Inheritance
System.Object
GridFunctionParameter
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.DBUI
Assembly: Simplic.Framework.DBUI.dll
Syntax
public class GridFunctionParameter
Properties
| Improve this Doc View SourceAdditionalParameter
Gets or sets a list of additional parameter
Declaration
public IList<object> AdditionalParameter { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> |
GridView
Gets or sets the grid that has opened called the grid method
Declaration
public IntegratedGridView GridView { get; set; }
Property Value
Type | Description |
---|---|
IntegratedGridView |
ParameterName
Gets or sets a menu parameter name
Declaration
public string ParameterName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ParameterValue
Gets or sets a menu parameter value
Declaration
public string ParameterValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SelectedRows
Gets or sets the list of selected rows
Declaration
public IList<object> SelectedRows { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> |
Methods
| Improve this Doc View SourceGetSelectedRowsAsDataRow()
Gets all data rows as ObservableDataRow
Declaration
public IEnumerable<ObservableDataRow> GetSelectedRowsAsDataRow()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ObservableDataRow> | Null or enumerable of |