Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / TextCompositionEventArgs.cs / 1305600 / TextCompositionEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: TextCompositionEventArgs class // // History: // 11/19/2003 : yutakas created // //--------------------------------------------------------------------------- using System; namespace System.Windows.Input { ////// The TextCompositionEventArgs class contains a text representation of /// input. /// public class TextCompositionEventArgs : InputEventArgs { ////// Constructs an instance of the TextInputEventArgs class. /// /// /// The input device to associate with this event. /// /// /// The TextComposition object that contains the composition text and the composition state. /// public TextCompositionEventArgs(InputDevice inputDevice, TextComposition composition) : base(inputDevice, Environment.TickCount) { if (composition == null) { throw new ArgumentNullException("composition"); } _composition = composition; } ////// The text composition that was provided. /// ///public TextComposition TextComposition { get {return _composition;} } /// /// The result text that was provided as input. /// ///public string Text { get {return _composition.Text;} } /// /// The result system text that was provided as input. /// ///public string SystemText { get {return _composition.SystemText;} } /// /// The result control text that was provided as input. /// ///public string ControlText { get {return _composition.ControlText;} } /// /// The mechanism used to call the type-specific handler on the /// target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// ///protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler; handler(genericTarget, this); } // The target TextComposition object of this event. private TextComposition _composition; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyInformationCollection.cs
- CodeArrayIndexerExpression.cs
- HtmlElementEventArgs.cs
- ZipIOLocalFileDataDescriptor.cs
- ADMembershipProvider.cs
- ReferentialConstraintRoleElement.cs
- SafeCoTaskMem.cs
- BufferModeSettings.cs
- XamlRtfConverter.cs
- BulletDecorator.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- SessionEndingEventArgs.cs
- DbParameterCollectionHelper.cs
- SqlIdentifier.cs
- TreeSet.cs
- WebServiceClientProxyGenerator.cs
- State.cs
- MILUtilities.cs
- ExpressionConverter.cs
- GlobalizationSection.cs
- ApplicationTrust.cs
- ResourceKey.cs
- FileDialog_Vista_Interop.cs
- StickyNoteContentControl.cs
- Visual3DCollection.cs
- DataGridColumnCollectionEditor.cs
- StringReader.cs
- CodeVariableDeclarationStatement.cs
- SafeCryptoHandles.cs
- DataColumnCollection.cs
- MailMessage.cs
- XmlSerializerOperationGenerator.cs
- DiscriminatorMap.cs
- DataKeyArray.cs
- MarshalByRefObject.cs
- Accessible.cs
- EventQueueState.cs
- BuildProviderAppliesToAttribute.cs
- PersonalizableTypeEntry.cs
- PropertyDescriptorCollection.cs
- FormsAuthenticationCredentials.cs
- CultureMapper.cs
- BlurBitmapEffect.cs
- ControlDesignerState.cs
- TextReturnReader.cs
- JournalEntryListConverter.cs
- PropertyGroupDescription.cs
- ReferentialConstraint.cs
- XmlILStorageConverter.cs
- LinqDataSourceContextData.cs
- ExtentCqlBlock.cs
- DataGridViewComboBoxCell.cs
- InstancePersistenceEvent.cs
- SafeMILHandle.cs
- PTConverter.cs
- RegionIterator.cs
- AngleUtil.cs
- RedirectionProxy.cs
- XmlIlGenerator.cs
- WebContentFormatHelper.cs
- ModelToObjectValueConverter.cs
- XmlLanguage.cs
- Control.cs
- DetailsViewDesigner.cs
- ToolStripItemClickedEventArgs.cs
- TransformCollection.cs
- DoubleMinMaxAggregationOperator.cs
- RefType.cs
- DrawTreeNodeEventArgs.cs
- InterleavedZipPartStream.cs
- DbCommandDefinition.cs
- MimeWriter.cs
- InstanceValue.cs
- AsyncResult.cs
- DataContractJsonSerializer.cs
- RegexReplacement.cs
- RecordManager.cs
- TextDocumentView.cs
- CategoryValueConverter.cs
- MimeBasePart.cs
- HtmlInputCheckBox.cs
- Rect3D.cs
- SmiMetaData.cs
- MonthCalendar.cs
- StreamBodyWriter.cs
- BaseProcessor.cs
- CopyAttributesAction.cs
- DataGridViewAutoSizeModeEventArgs.cs
- ParameterRefs.cs
- ContentPlaceHolderDesigner.cs
- HtmlContainerControl.cs
- DropShadowEffect.cs
- UriTemplateCompoundPathSegment.cs
- ToolStripKeyboardHandlingService.cs
- ClientBuildManagerCallback.cs
- WebEventCodes.cs
- EditingScope.cs
- ExpressionPrinter.cs
- XmlSchemaException.cs
- ScriptingWebServicesSectionGroup.cs