/// <summary> /// Creates a block that applies a border to this block. /// </summary> public BorderBlock WithBorder(Border Border) { return new BorderBlock(Border, this); }
public BorderBlock(Border Border, Block Inner) { this.Border = Border; this.Inner = Inner; }
public TextBlockStyle( Point CellSize, Alignment HorizontalAlignment, Alignment VerticalAlignment, int IndentSize, double CaretBlinkRate, Border CaretStyle) { this.CellSize = CellSize; this.HorizontalAlignment = HorizontalAlignment; this.VerticalAlignment = VerticalAlignment; this.IndentSize = IndentSize; this.CaretBlinkRate = CaretBlinkRate; this.CaretStyle = CaretStyle; }
public GridBlock(Block[,] Cells, Border Seperator) { this.Cells = Cells; this.Seperator = Seperator; }