/// <summary>
 /// Creates a RowPosProperty class for the specified grid.
 /// </summary>
 /// <param name="parent">The grid to use to create the RowPosProperty class.</param>
 public RowPosProperty(DataGridViewCommon parent)
 {
     this.parent = parent;
 }
Example #2
0
 /// <summary>
 /// Creates a ColDataProperty class for a specified grid.
 /// </summary>
 /// <param name="parent">The grid for which this class should be created.</param>
 public ColDataProperty(DataGridViewCommon parent)
 {
     this.parent = parent;
 }
 /// <summary>
 /// Creates a ColumnAlignmentProperty class for a specified grid.
 /// </summary>
 /// <param name="parent">The grid for which to create this class.</param>
 public ColAlignmentProperty(DataGridViewCommon parent)
 {
     this.parent = parent;
 }