Click or drag to resize

WorksheetControllerSelectedPropertyRows Property

Returns the currently selected property rows if property cells are selected alone. If not selected alone, the SelectedColumn property is returned.

Namespace: Altaxo.Gui.Worksheet.Viewing
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public IndexSelection SelectedPropertyRows { get; }

Property Value

IndexSelection

Implements

IWorksheetControllerSelectedPropertyRows
Remarks
Normally, if you select one or more data columns, the corresponding property rows are selected as well. Therefore, it would not be possible to select property rows without also selecting the data columns. To work around this, you can first select property columns and then data columns. In this case the selection is not stored in SelectedColumns, but in SelectedPropertyRows, and SelectedColumns.Count returns 0.
See Also