Back to Devexpress

FloatingObject.BottomRightCell Property

officefileapi-devexpress-dot-spreadsheet-dot-floatingobject-9cdbadaa.md

latest4.3 KB
Original Source

FloatingObject.BottomRightCell Property

Gets or sets a cell where the bottom right corner of a floating object is located.

Namespace : DevExpress.Spreadsheet

Assembly : DevExpress.Spreadsheet.v25.2.Core.dll

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
Cell BottomRightCell { get; set; }
vb
Property BottomRightCell As Cell

Property Value

TypeDescription
Cell

A Cell object that is the cell containing the floating object’s bottom right corner.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the BottomRightCell property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-spreadsheet-chart-api/CS/SpreadsheetChartAPISamples/CodeExamples/DataTableActions.cs#L17

csharp
chart.TopLeftCell = worksheet.Cells["F2"];
chart.BottomRightCell = worksheet.Cells["L14"];
DataTableOptions dataTableOptions = chart.DataTable;

wpf-spreadsheet-chart-api/CS/SpreadsheetWPFChartAPISamples/CodeExamples/DataTableActions.cs#L17

csharp
chart.TopLeftCell = worksheet.Cells["F2"];
chart.BottomRightCell = worksheet.Cells["L14"];
DataTableOptions dataTableOptions = chart.DataTable;

spreadsheet-document-api-chart-examples/CS/SpreadsheetDocServerChartAPISamples/CodeExamples/ProtectionActions.cs#L20

csharp
chart.TopLeftCell = worksheet.Cells["H2"];
chart.BottomRightCell = worksheet.Cells["N14"];

winforms-spreadsheet-chart-api/VB/SpreadsheetChartAPISamples/CodeExamples/DataTableActions.vb#L14

vb
chart.TopLeftCell = worksheet.Cells("F2")
chart.BottomRightCell = worksheet.Cells("L14")
Dim dataTableOptions As DataTableOptions = chart.DataTable

wpf-spreadsheet-chart-api/VB/SpreadsheetWPFChartAPISamples/CodeExamples/DataTableActions.vb#L16

vb
chart.TopLeftCell = worksheet.Cells("F2")
chart.BottomRightCell = worksheet.Cells("L14")
Dim dataTableOptions As DataTableOptions = chart.DataTable

spreadsheet-document-api-chart-examples/VB/SpreadsheetDocServerChartAPISamples/CodeExamples/LegendActions.vb#L23

vb
chart.TopLeftCell = worksheet.Cells("H2")
chart.BottomRightCell = worksheet.Cells("N14")

See Also

FloatingObject Interface

FloatingObject Members

DevExpress.Spreadsheet Namespace