Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewLayoutData.cs / 1305376 / DataGridViewLayoutData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Drawing; using System.Text; namespace System.Windows.Forms { public partial class DataGridView { internal class LayoutData { internal bool dirty = true; // used for resizing. public Rectangle ClientRectangle = Rectangle.Empty; // region inside the dataGridView's borders. public Rectangle Inside = Rectangle.Empty; // region occupied by row headers public Rectangle RowHeaders = Rectangle.Empty; // region occupied by column headers public Rectangle ColumnHeaders = Rectangle.Empty; // top left header cell public Rectangle TopLeftHeader = Rectangle.Empty; // region for the cells public Rectangle Data = Rectangle.Empty; // square connecting the two scrollbars public Rectangle ResizeBoxRect = Rectangle.Empty; public bool ColumnHeadersVisible; public bool RowHeadersVisible; public LayoutData() { } public LayoutData(LayoutData src) { this.ClientRectangle = src.ClientRectangle; this.TopLeftHeader = src.TopLeftHeader; this.ColumnHeaders = src.ColumnHeaders; this.RowHeaders = src.RowHeaders; this.Inside = src.Inside; this.Data = src.Data; this.ResizeBoxRect = src.ResizeBoxRect; this.ColumnHeadersVisible = src.ColumnHeadersVisible; this.RowHeadersVisible = src.RowHeadersVisible; } public override string ToString() { StringBuilder sb = new StringBuilder(100); sb.Append(base.ToString()); sb.Append(" { \n"); sb.Append("ClientRectangle = "); sb.Append(ClientRectangle.ToString()); sb.Append('\n'); sb.Append("Inside = "); sb.Append(Inside.ToString()); sb.Append('\n'); sb.Append("TopLeftHeader = "); sb.Append(TopLeftHeader.ToString()); sb.Append('\n'); sb.Append("ColumnHeaders = "); sb.Append(ColumnHeaders.ToString()); sb.Append('\n'); sb.Append("RowHeaders = "); sb.Append(RowHeaders.ToString()); sb.Append('\n'); sb.Append("Data = "); sb.Append(Data.ToString()); sb.Append('\n'); sb.Append("ResizeBoxRect = "); sb.Append(ResizeBoxRect.ToString()); sb.Append('\n'); sb.Append("ColumnHeadersVisible = "); sb.Append(ColumnHeadersVisible.ToString()); sb.Append('\n'); sb.Append("RowHeadersVisible = "); sb.Append(RowHeadersVisible.ToString()); sb.Append(" }"); return sb.ToString(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Drawing; using System.Text; namespace System.Windows.Forms { public partial class DataGridView { internal class LayoutData { internal bool dirty = true; // used for resizing. public Rectangle ClientRectangle = Rectangle.Empty; // region inside the dataGridView's borders. public Rectangle Inside = Rectangle.Empty; // region occupied by row headers public Rectangle RowHeaders = Rectangle.Empty; // region occupied by column headers public Rectangle ColumnHeaders = Rectangle.Empty; // top left header cell public Rectangle TopLeftHeader = Rectangle.Empty; // region for the cells public Rectangle Data = Rectangle.Empty; // square connecting the two scrollbars public Rectangle ResizeBoxRect = Rectangle.Empty; public bool ColumnHeadersVisible; public bool RowHeadersVisible; public LayoutData() { } public LayoutData(LayoutData src) { this.ClientRectangle = src.ClientRectangle; this.TopLeftHeader = src.TopLeftHeader; this.ColumnHeaders = src.ColumnHeaders; this.RowHeaders = src.RowHeaders; this.Inside = src.Inside; this.Data = src.Data; this.ResizeBoxRect = src.ResizeBoxRect; this.ColumnHeadersVisible = src.ColumnHeadersVisible; this.RowHeadersVisible = src.RowHeadersVisible; } public override string ToString() { StringBuilder sb = new StringBuilder(100); sb.Append(base.ToString()); sb.Append(" { \n"); sb.Append("ClientRectangle = "); sb.Append(ClientRectangle.ToString()); sb.Append('\n'); sb.Append("Inside = "); sb.Append(Inside.ToString()); sb.Append('\n'); sb.Append("TopLeftHeader = "); sb.Append(TopLeftHeader.ToString()); sb.Append('\n'); sb.Append("ColumnHeaders = "); sb.Append(ColumnHeaders.ToString()); sb.Append('\n'); sb.Append("RowHeaders = "); sb.Append(RowHeaders.ToString()); sb.Append('\n'); sb.Append("Data = "); sb.Append(Data.ToString()); sb.Append('\n'); sb.Append("ResizeBoxRect = "); sb.Append(ResizeBoxRect.ToString()); sb.Append('\n'); sb.Append("ColumnHeadersVisible = "); sb.Append(ColumnHeadersVisible.ToString()); sb.Append('\n'); sb.Append("RowHeadersVisible = "); sb.Append(RowHeadersVisible.ToString()); sb.Append(" }"); return sb.ToString(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XamlRtfConverter.cs
- OracleTimeSpan.cs
- DataObjectFieldAttribute.cs
- XmlElement.cs
- Debug.cs
- IteratorFilter.cs
- NativeMethods.cs
- XmlSchemaFacet.cs
- CellParagraph.cs
- TypeResolver.cs
- D3DImage.cs
- TableCell.cs
- UpdateManifestForBrowserApplication.cs
- MultiAsyncResult.cs
- ApplicationBuildProvider.cs
- EntityCollection.cs
- Scene3D.cs
- uribuilder.cs
- AggregateException.cs
- DrawingImage.cs
- SqlCommandBuilder.cs
- WebSysDescriptionAttribute.cs
- DesignerCategoryAttribute.cs
- SelfIssuedAuthRSAPKCS1SignatureFormatter.cs
- DataTransferEventArgs.cs
- Cloud.cs
- CollectionsUtil.cs
- ServicePointManager.cs
- XmlSchemaInferenceException.cs
- Accessible.cs
- clipboard.cs
- VolatileEnlistmentMultiplexing.cs
- TransformValueSerializer.cs
- AssemblyBuilderData.cs
- WebConfigurationHostFileChange.cs
- DESCryptoServiceProvider.cs
- Rule.cs
- Border.cs
- EntityContainerEmitter.cs
- ConfigXmlWhitespace.cs
- EnterpriseServicesHelper.cs
- ByteArrayHelperWithString.cs
- XmlSerializationWriter.cs
- TextParagraphView.cs
- XmlDataSourceView.cs
- DecimalAnimationBase.cs
- SystemTcpStatistics.cs
- PropVariant.cs
- BinaryUtilClasses.cs
- CodeDomDecompiler.cs
- AudioSignalProblemOccurredEventArgs.cs
- XmlAnyAttributeAttribute.cs
- SslStream.cs
- ExtenderControl.cs
- PropertyChange.cs
- TabItemWrapperAutomationPeer.cs
- UIPermission.cs
- IBuiltInEvidence.cs
- RoutedEvent.cs
- QueueProcessor.cs
- TileBrush.cs
- ScrollBarRenderer.cs
- InternalEnumValidator.cs
- BrowserCapabilitiesFactoryBase.cs
- LineServicesRun.cs
- DataBoundControlHelper.cs
- AttachedPropertyMethodSelector.cs
- Int32Animation.cs
- DBConcurrencyException.cs
- PanelContainerDesigner.cs
- EntityDesignPluralizationHandler.cs
- RawStylusInput.cs
- SmiContextFactory.cs
- SymLanguageType.cs
- ResourceSet.cs
- Point3DConverter.cs
- AuthenticationModeHelper.cs
- ResourceManagerWrapper.cs
- Rfc2898DeriveBytes.cs
- KnownTypesHelper.cs
- PasswordPropertyTextAttribute.cs
- TdsValueSetter.cs
- CultureSpecificStringDictionary.cs
- RecognitionEventArgs.cs
- DataGridViewButtonCell.cs
- TextSchema.cs
- SqlTypesSchemaImporter.cs
- URLIdentityPermission.cs
- FontWeightConverter.cs
- UserMapPath.cs
- FacetDescriptionElement.cs
- Transform.cs
- QueryStoreStatusRequest.cs
- BufferModesCollection.cs
- DbConnectionPoolIdentity.cs
- PropertyMap.cs
- Attributes.cs
- CodeParameterDeclarationExpressionCollection.cs
- DbDataRecord.cs
- NativeMethods.cs