ppsGrid Class Library
SelectionDashStyle Property
NamespacesppsGridGridSelectionDashStyle
ppsGrid (c] 2004-2007 by Torsten Oberprieler
Ruft das Linienmuster ab, das bestimmt, wie der Rand der Markierung gezeichnet wird, oder legt dieses fest.
Declaration Syntax
C#Visual BasicVisual C++
public eDashStyle SelectionDashStyle{ get; set;}
Public Property SelectionDashStyle As eDashStyle
public:
property eDashStyle SelectionDashStyle {
	eDashStyle get ();
	void set (eDashStyle value);
}
Value
Ein eDashStyle-Wert, der das Linienmuster für den Rand der Markierung angibt. Der Standardwert ist None.
Examples
CopyC#
...                                               // zellenrahmen... 
grid.CellFrameType = eCellFrameType.Horiz;        // ...nur horizontal
grid.CellFrameDashStyle = eDashStyle.DashDot;     // ...strich-punkt-linie
grid.CellFrameWidth = 2;                          // ...2 pixel breit
grid.CellFrameColor = Color.Blue;                    // ...in blauer Farbe

                                                  // Markierung...
grid.SelectionFrameDashStyle = eDashStyle.Solid;  // ...durchgezogene Linie
grid.SelectionFrameWidth = 4;                     // ...4 pixel breit
grid.SelectionFrameColor = Color.Gray;            // ...in Grau
...
See Also

Assembly: ppsGrid (Module: ppsGrid) Version: 1.3.4.0