Class GridSelectionArgs
Grid selection arguments that will be passed, when a generated menu is called
Inheritance
System.Object
GridSelectionArgs
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 GridSelectionArgs
Properties
| Improve this Doc View Sourcecell_name
Gets the cell name that is selected though the clicked menu entry
Declaration
public string cell_name { get; }
Property Value
Type | Description |
---|---|
System.String |
cell_value
Gets the cell value that is selected though the clicked menu entry
Declaration
public object cell_value { get; }
Property Value
Type | Description |
---|---|
System.Object |
CellName
Gets the cell name that is selected though the clicked menu entry
Declaration
public string CellName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CellValue
Gets the cell value that is selected though the clicked menu entry
Declaration
public object CellValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
parameter_name
Gets the parameter name
Declaration
public string parameter_name { get; }
Property Value
Type | Description |
---|---|
System.String |
parameter_value
Gets the parameter value
Declaration
public object parameter_value { get; }
Property Value
Type | Description |
---|---|
System.Object |
ParameterName
Gets or sets the parameter name
Declaration
public string ParameterName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ParameterValue
Gets the parameter name
Declaration
public object ParameterValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
selected_rows
Gets a list of selected rows
Declaration
public IList<dynamic> selected_rows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> |
SelectedRows
Gets a list of selected rows
Declaration
public IList<dynamic> SelectedRows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> |