Click or drag to resize

WorksheetPaintingGdiPaintTableArea Method

Paints part of the worksheet to the drawing context. Row and column header are always threaten as visible here.

Namespace: Altaxo.Worksheet
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void PaintTableArea(
	Graphics dc,
	WorksheetLayout layout,
	Size viewSize,
	RectangleD2D clipRectangle,
	IAscendingIntegerCollection selectedDataColumns,
	IAscendingIntegerCollection selectedDataRows,
	IAscendingIntegerCollection selectedPropertyColumns,
	IAscendingIntegerCollection selectedPropertyRows,
	int horzScrollPos,
	int vertScrollPos
)

Parameters

dc  Graphics
Drawing context.
layout  WorksheetLayout
Worksheet layout.
viewSize  Size
Width and height of the viewing area (Pixel or Wpf coordinates).
clipRectangle  RectangleD2D
Bounds of the clipping region. Only that parts of the worksheet that are visible within the clipping region are drawn.
selectedDataColumns  IAscendingIntegerCollection
Selected data columns.
selectedDataRows  IAscendingIntegerCollection
Selected data rows.
selectedPropertyColumns  IAscendingIntegerCollection
Selected property columns.
selectedPropertyRows  IAscendingIntegerCollection
Selected property rows.
horzScrollPos  Int32
Horizontal scroll position (0 = first column visible).
vertScrollPos  Int32
Vertical scroll position (0 = first data column visible, negative values: one or more property columns visible).
See Also