Class TableAdv
Inheritance
System.Object
TableAdv
Assembly: Syncfusion.RichTextBoxAdv.WPF.dll
public class TableAdv : BlockAdv
Constructors
Declaration
It creates the new table with given rows and columns count
Declaration
public TableAdv(int rowcount, int columncount)
Parameters
Type |
Name |
Description |
System.Int32 |
rowcount |
|
System.Int32 |
columncount |
|
Fields
Declaration
public static readonly DependencyProperty BackgroundProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty BorderBrushProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty BorderStyleProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty BorderThicknessProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeDashArrayProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeDashCapProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeDashOffsetProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeEndLineCapProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeLineJoinProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeMiterLimitProperty
Field Value
Type |
System.Windows.DependencyProperty |
Declaration
public static readonly DependencyProperty StrokeStartLineCapProperty
Field Value
Type |
System.Windows.DependencyProperty |
Properties
Declaration
public Color Background { get; set; }
Property Value
Type |
System.Windows.Media.Color |
Declaration
public Color BorderBrush { get; set; }
Property Value
Type |
System.Windows.Media.Color |
Declaration
public Style BorderStyle { get; set; }
Property Value
Type |
System.Windows.Style |
Declaration
public double BorderThickness { get; set; }
Property Value
Declaration
public override bool IsEmpty { get; }
Property Value
Overrides
Declaration
public TableRowAdvCollection Rows { get; set; }
Property Value
Declaration
public DoubleCollection StrokeDashArray { get; set; }
Property Value
Type |
System.Windows.Media.DoubleCollection |
Declaration
public PenLineCap StrokeDashCap { get; set; }
Property Value
Type |
System.Windows.Media.PenLineCap |
Declaration
public double StrokeDashOffset { get; set; }
Property Value
Declaration
public PenLineCap StrokeEndLineCap { get; set; }
Property Value
Type |
System.Windows.Media.PenLineCap |
Declaration
public PenLineJoin StrokeLineJoin { get; set; }
Property Value
Type |
System.Windows.Media.PenLineJoin |
Declaration
public double StrokeMiterLimit { get; set; }
Property Value
Declaration
public PenLineCap StrokeStartLineCap { get; set; }
Property Value
Type |
System.Windows.Media.PenLineCap |
Table Holder to hold columns
Declaration
public TableHolder TableHolder { get; }
Property Value
It Measures the TableWidth
Declaration
public double TableWidth { get; }
Property Value
Methods
It copies the Table instance.
Declaration
public override BlockAdv CopyBlock()
Returns
Overrides
It inserts the Column at the given index.
Declaration
public void InsertColumnAtIndex(int index, ref List<TableCellAdv> insertedcells)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
System.Collections.Generic.List<TableCellAdv> |
insertedcells |
|
It inserts the Row at the specified index.
Declaration
public void InsertRowAtIndex(TableRowAdv given, int index)
Parameters
Type |
Name |
Description |
TableRowAdv |
given |
|
System.Int32 |
index |
|