Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewTextBoxColumn.cs / 1305376 / DataGridViewTextBoxColumn.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Text; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; ///[ToolboxBitmapAttribute(typeof(DataGridViewTextBoxColumn), "DataGridViewTextBoxColumn.bmp")] public class DataGridViewTextBoxColumn : DataGridViewColumn { private const int DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength = 32767; /// public DataGridViewTextBoxColumn() : base(new DataGridViewTextBoxCell()) { this.SortMode = DataGridViewColumnSortMode.Automatic; } /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override DataGridViewCell CellTemplate { get { return base.CellTemplate; } set { if (value != null && !(value is System.Windows.Forms.DataGridViewTextBoxCell)) { throw new InvalidCastException(SR.GetString(SR.DataGridViewTypeColumn_WrongCellTemplateType, "System.Windows.Forms.DataGridViewTextBoxCell")); } base.CellTemplate = value; } } /// [ DefaultValue(DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength), SRCategory(SR.CatBehavior), SRDescription(SR.DataGridView_TextBoxColumnMaxInputLengthDescr) ] public int MaxInputLength { get { if (this.TextBoxCellTemplate == null) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewColumn_CellTemplateRequired)); } return this.TextBoxCellTemplate.MaxInputLength; } set { if (this.MaxInputLength != value) { this.TextBoxCellTemplate.MaxInputLength = value; if (this.DataGridView != null) { DataGridViewRowCollection dataGridViewRows = this.DataGridView.Rows; int rowCount = dataGridViewRows.Count; for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) { DataGridViewRow dataGridViewRow = dataGridViewRows.SharedRow(rowIndex); DataGridViewTextBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewTextBoxCell; if (dataGridViewCell != null) { dataGridViewCell.MaxInputLength = value; } } } } } } /// [ DefaultValue(DataGridViewColumnSortMode.Automatic) ] public new DataGridViewColumnSortMode SortMode { get { return base.SortMode; } set { base.SortMode = value; } } private DataGridViewTextBoxCell TextBoxCellTemplate { get { return (DataGridViewTextBoxCell) this.CellTemplate; } } /// public override string ToString() { StringBuilder sb = new StringBuilder(64); sb.Append("DataGridViewTextBoxColumn { Name="); sb.Append(this.Name); sb.Append(", Index="); sb.Append(this.Index.ToString(CultureInfo.CurrentCulture)); sb.Append(" }"); return sb.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Text; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; ///[ToolboxBitmapAttribute(typeof(DataGridViewTextBoxColumn), "DataGridViewTextBoxColumn.bmp")] public class DataGridViewTextBoxColumn : DataGridViewColumn { private const int DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength = 32767; /// public DataGridViewTextBoxColumn() : base(new DataGridViewTextBoxCell()) { this.SortMode = DataGridViewColumnSortMode.Automatic; } /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override DataGridViewCell CellTemplate { get { return base.CellTemplate; } set { if (value != null && !(value is System.Windows.Forms.DataGridViewTextBoxCell)) { throw new InvalidCastException(SR.GetString(SR.DataGridViewTypeColumn_WrongCellTemplateType, "System.Windows.Forms.DataGridViewTextBoxCell")); } base.CellTemplate = value; } } /// [ DefaultValue(DATAGRIDVIEWTEXTBOXCOLUMN_maxInputLength), SRCategory(SR.CatBehavior), SRDescription(SR.DataGridView_TextBoxColumnMaxInputLengthDescr) ] public int MaxInputLength { get { if (this.TextBoxCellTemplate == null) { throw new InvalidOperationException(SR.GetString(SR.DataGridViewColumn_CellTemplateRequired)); } return this.TextBoxCellTemplate.MaxInputLength; } set { if (this.MaxInputLength != value) { this.TextBoxCellTemplate.MaxInputLength = value; if (this.DataGridView != null) { DataGridViewRowCollection dataGridViewRows = this.DataGridView.Rows; int rowCount = dataGridViewRows.Count; for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) { DataGridViewRow dataGridViewRow = dataGridViewRows.SharedRow(rowIndex); DataGridViewTextBoxCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewTextBoxCell; if (dataGridViewCell != null) { dataGridViewCell.MaxInputLength = value; } } } } } } /// [ DefaultValue(DataGridViewColumnSortMode.Automatic) ] public new DataGridViewColumnSortMode SortMode { get { return base.SortMode; } set { base.SortMode = value; } } private DataGridViewTextBoxCell TextBoxCellTemplate { get { return (DataGridViewTextBoxCell) this.CellTemplate; } } /// public override string ToString() { StringBuilder sb = new StringBuilder(64); sb.Append("DataGridViewTextBoxColumn { Name="); sb.Append(this.Name); sb.Append(", Index="); sb.Append(this.Index.ToString(CultureInfo.CurrentCulture)); 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
- OdbcConnectionString.cs
- EventToken.cs
- WinFormsSpinner.cs
- StatusBar.cs
- SocketElement.cs
- NativeCppClassAttribute.cs
- Selection.cs
- HttpContextServiceHost.cs
- XmlSerializerFactory.cs
- ErasingStroke.cs
- HwndHostAutomationPeer.cs
- ValidationRuleCollection.cs
- LocalValueEnumerator.cs
- ConnectionStringsExpressionEditor.cs
- ProcessManager.cs
- IPipelineRuntime.cs
- Int32AnimationBase.cs
- DurationConverter.cs
- WindowsSecurityTokenAuthenticator.cs
- Compiler.cs
- FocusManager.cs
- MetadataAssemblyHelper.cs
- CompleteWizardStep.cs
- TlsSspiNegotiation.cs
- SRef.cs
- ProfileSettingsCollection.cs
- Block.cs
- ExtensionSimplifierMarkupObject.cs
- StorageSetMapping.cs
- Misc.cs
- AddressAccessDeniedException.cs
- BaseCodePageEncoding.cs
- EdmPropertyAttribute.cs
- PropertyPushdownHelper.cs
- PropertyEmitterBase.cs
- KeyConstraint.cs
- ScriptResourceAttribute.cs
- X509ChainElement.cs
- SurrogateEncoder.cs
- VisualBrush.cs
- InstanceLockedException.cs
- Module.cs
- FixedPage.cs
- DataSetUtil.cs
- MeshGeometry3D.cs
- EventsTab.cs
- Message.cs
- Collection.cs
- HyperLinkDesigner.cs
- Soap.cs
- NonSerializedAttribute.cs
- TextDocumentView.cs
- ProcessHostMapPath.cs
- InvalidWMPVersionException.cs
- FixedHighlight.cs
- EasingFunctionBase.cs
- VBCodeProvider.cs
- Drawing.cs
- ColumnWidthChangingEvent.cs
- ListBoxChrome.cs
- Compensation.cs
- HttpHandlersInstallComponent.cs
- ImportStoreException.cs
- ImageDrawing.cs
- Serializer.cs
- CellIdBoolean.cs
- TraceListeners.cs
- AssemblyCollection.cs
- DbFunctionCommandTree.cs
- HealthMonitoringSectionHelper.cs
- compensatingcollection.cs
- recordstatefactory.cs
- EntityDataSourceSelectingEventArgs.cs
- PipelineModuleStepContainer.cs
- SqlExpressionNullability.cs
- unsafenativemethodstextservices.cs
- Decorator.cs
- ApplyImportsAction.cs
- ServiceDescriptionReflector.cs
- XPathNodeHelper.cs
- MediaEntryAttribute.cs
- ProviderSettings.cs
- PackageRelationshipCollection.cs
- PrintDocument.cs
- XslException.cs
- EntityCollection.cs
- OdbcDataReader.cs
- ToolBar.cs
- SpoolingTask.cs
- WebPartVerb.cs
- SendActivityValidator.cs
- TextServicesCompartment.cs
- StringCollection.cs
- Query.cs
- RichTextBox.cs
- ComponentResourceKeyConverter.cs
- WebPartDisplayModeEventArgs.cs
- nulltextnavigator.cs
- RegistryPermission.cs
- Symbol.cs