1 write to TabItemRectangle
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
1986this.drawItems[i].TabItemRectangle = Rectangle.Empty;
22 references to TabItemRectangle
System.Workflow.ComponentModel (22)
AuthoringOM\Design\DesignerWidgets.cs (22)
1895Rectangle tabItemRectangle = drawTabItem.TabItemRectangle; 1989this.drawItems[i].TabItemRectangle.X = offset; 1990this.drawItems[i].TabItemRectangle.Y = 0; 1991this.drawItems[i].TabItemRectangle.Width = tabItemSize; 1992this.drawItems[i].TabItemRectangle.Height = this.reqTabItemSize; 1996this.drawItems[i].TabItemRectangle.X = 0; 1997this.drawItems[i].TabItemRectangle.Y = offset; 1998this.drawItems[i].TabItemRectangle.Width = this.reqTabItemSize; 1999this.drawItems[i].TabItemRectangle.Height = tabItemSize; 2014int lastItemWidth = (this.orientation == Orientation.Horizontal) ? lastItemStruct.TabItemRectangle.Width - itemSizeDecrease : lastItemStruct.TabItemRectangle.Height - itemSizeDecrease; 2022this.drawItems[i].TabItemRectangle.X -= offset; 2023this.drawItems[i].TabItemRectangle.Width -= itemSizeDecrease; 2024if ((i == this.tabItemList.Count - 1) && this.drawItems[i].TabItemRectangle.Width < this.reqTabItemSize) 2025this.drawItems[i].TabItemRectangle.Width = this.reqTabItemSize; 2029this.drawItems[i].TabItemRectangle.Y -= offset; 2030this.drawItems[i].TabItemRectangle.Height -= itemSizeDecrease; 2031if ((i == this.tabItemList.Count - 1) && this.drawItems[i].TabItemRectangle.Height < this.reqTabItemSize) 2032this.drawItems[i].TabItemRectangle.Height = this.reqTabItemSize; 2073return this.drawItems[index].TabItemRectangle; 2087imageRectangle = this.drawItems[index].TabItemRectangle; 2104textRectangle = this.drawItems[index].TabItemRectangle;