14 lines
130 B
C#
14 lines
130 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Core
|
|
{
|
|
internal enum StyleParentKind : byte
|
|
{
|
|
Root,
|
|
Col,
|
|
Row,
|
|
Range,
|
|
Own
|
|
}
|
|
}
|