Ejemplo n.º 1
0
 public ImageCell()
 {
     this.m_ia = new ImageAttributes();
     this.m_ImageList = null;
     this.m_transparentColor = Resco.Controls.AdvancedTree.AdvancedTree.TransparentColor;
     this.m_bAutoTransparent = false;
     this.m_bAutoResize = false;
     this.m_Alignment = Resco.Controls.AdvancedTree.Alignment.TopLeft;
 }
Ejemplo n.º 2
0
 public ImageCell(ImageCell cell) : base(cell)
 {
     this.m_ia               = new ImageAttributes();
     this.m_ImageList        = cell.m_ImageList;
     this.m_bAutoTransparent = cell.m_bAutoTransparent;
     this.m_bAutoResize      = cell.m_bAutoResize;
     this.m_Alignment        = cell.m_Alignment;
     this.TransparentColor   = cell.TransparentColor;
 }
Ejemplo n.º 3
0
 public ImageCell()
 {
     this.m_ia               = new ImageAttributes();
     this.m_ImageList        = null;
     this.m_transparentColor = Resco.Controls.AdvancedTree.AdvancedTree.TransparentColor;
     this.m_bAutoTransparent = false;
     this.m_bAutoResize      = false;
     this.m_Alignment        = Resco.Controls.AdvancedTree.Alignment.TopLeft;
 }
Ejemplo n.º 4
0
 public TextCell(TextCell tc) : base(tc)
 {
     this.m_Font                        = new Font(tc.m_Font.Name, tc.m_Font.Size, tc.m_Font.Style);
     this.m_TextAlignment               = tc.m_TextAlignment;
     this.m_format                      = tc.m_format;
     this.m_selectedForeColor           = tc.m_selectedForeColor;
     this.m_selectedBackColor           = tc.m_selectedBackColor;
     this.m_selectedText                = tc.m_selectedText;
     this.m_restrictSelectedTextToStart = tc.m_restrictSelectedTextToStart;
 }
Ejemplo n.º 5
0
 public TextCell()
 {
     this.m_Font                        = new Font("Tahoma", 8f, FontStyle.Regular);
     this.m_TextAlignment               = Resco.Controls.AdvancedTree.Alignment.TopLeft;
     this.m_format                      = null;
     this.m_selectedForeColor           = SystemColors.HighlightText;
     this.m_selectedBackColor           = SystemColors.Highlight;
     this.m_selectedText                = "";
     this.m_restrictSelectedTextToStart = false;
 }
Ejemplo n.º 6
0
 public TextCell()
 {
     this.m_Font = new Font("Tahoma", 8f, FontStyle.Regular);
     this.m_TextAlignment = Resco.Controls.AdvancedTree.Alignment.TopLeft;
     this.m_format = null;
     this.m_selectedForeColor = SystemColors.HighlightText;
     this.m_selectedBackColor = SystemColors.Highlight;
     this.m_selectedText = "";
     this.m_restrictSelectedTextToStart = false;
 }
Ejemplo n.º 7
0
 public ImageCell(ImageCell cell)
     : base(cell)
 {
     this.m_ia = new ImageAttributes();
     this.m_ImageList = cell.m_ImageList;
     this.m_bAutoTransparent = cell.m_bAutoTransparent;
     this.m_bAutoResize = cell.m_bAutoResize;
     this.m_Alignment = cell.m_Alignment;
     this.TransparentColor = cell.TransparentColor;
 }
Ejemplo n.º 8
0
 public TextCell(TextCell tc)
     : base(tc)
 {
     this.m_Font = new Font(tc.m_Font.Name, tc.m_Font.Size, tc.m_Font.Style);
     this.m_TextAlignment = tc.m_TextAlignment;
     this.m_format = tc.m_format;
     this.m_selectedForeColor = tc.m_selectedForeColor;
     this.m_selectedBackColor = tc.m_selectedBackColor;
     this.m_selectedText = tc.m_selectedText;
     this.m_restrictSelectedTextToStart = tc.m_restrictSelectedTextToStart;
 }