Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / TextViewElement.cs / 1305376 / TextViewElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Text; using System.Diagnostics; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Drawing.Design; using System.Web; using System.Web.UI; using System.Web.UI.Design.WebControls; using System.Web.UI.HtmlControls; using System.Security.Permissions; namespace System.Web.UI.MobileControls { /* * Mobile TextView Element class. * The TextView control stores its contents as a series of elements. This * class encapsulates an element. * * Copyright (c) 2000 Microsoft Corporation */ ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class TextViewElement { private String _text; private String _url; private bool _isBold; private bool _isItalic; private bool _breakAfter; /// public String Text { get { return _text; } } /// public String Url { get { return _url; } } /// public bool IsBold { get { return _isBold; } } /// public bool IsItalic { get { return _isItalic; } } /// public bool BreakAfter { get { return _breakAfter; } } internal TextViewElement(String text, String url, bool isBold, bool isItalic, bool breakAfter) { _text = text; _url = url; _isBold = isBold; _isItalic = isItalic; _breakAfter = breakAfter; } } } // 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
- OdbcPermission.cs
- UniformGrid.cs
- ExceptionValidationRule.cs
- Speller.cs
- ZipIOBlockManager.cs
- GenericAuthenticationEventArgs.cs
- PolyBezierSegment.cs
- objectquery_tresulttype.cs
- GroupBox.cs
- SingleAnimationUsingKeyFrames.cs
- HttpCapabilitiesSectionHandler.cs
- Compiler.cs
- SecurityContext.cs
- BamlResourceDeserializer.cs
- HtmlListAdapter.cs
- EnumBuilder.cs
- DependencyPropertyKey.cs
- XmlAnyAttributeAttribute.cs
- TokenFactoryCredential.cs
- TogglePattern.cs
- DataMemberFieldConverter.cs
- COAUTHIDENTITY.cs
- HttpCapabilitiesBase.cs
- PropertyTabAttribute.cs
- CodeTypeReferenceExpression.cs
- PolyLineSegmentFigureLogic.cs
- Collection.cs
- VoiceChangeEventArgs.cs
- ComplexLine.cs
- WaitForChangedResult.cs
- MaskInputRejectedEventArgs.cs
- HandleRef.cs
- RegisteredDisposeScript.cs
- SelectionPattern.cs
- DataGridTextBoxColumn.cs
- Timer.cs
- DrawingState.cs
- PageThemeBuildProvider.cs
- SHA1Managed.cs
- ConfigXmlWhitespace.cs
- SmtpMail.cs
- DetailsViewModeEventArgs.cs
- ImageList.cs
- SmtpDateTime.cs
- SqlDataSourceFilteringEventArgs.cs
- OracleParameterBinding.cs
- PageParser.cs
- OleDbRowUpdatingEvent.cs
- HwndTarget.cs
- CalendarModeChangedEventArgs.cs
- AppSecurityManager.cs
- LinqDataSource.cs
- LambdaCompiler.Generated.cs
- HttpProfileBase.cs
- DBSqlParserColumnCollection.cs
- InputScope.cs
- RayHitTestParameters.cs
- WebPartZoneBaseDesigner.cs
- RadioButtonFlatAdapter.cs
- ConvertTextFrag.cs
- PlanCompiler.cs
- XmlSchemaImport.cs
- WebBrowsableAttribute.cs
- SqlClientWrapperSmiStream.cs
- CaseExpr.cs
- RegexRunner.cs
- ShapingWorkspace.cs
- NullableFloatAverageAggregationOperator.cs
- ClientBuildManager.cs
- SimpleFieldTemplateFactory.cs
- XDRSchema.cs
- RegexTypeEditor.cs
- SelectionWordBreaker.cs
- SqlProvider.cs
- WindowPattern.cs
- SpellerInterop.cs
- PeerInputChannel.cs
- BitmapCodecInfoInternal.cs
- DropTarget.cs
- ReverseInheritProperty.cs
- NotCondition.cs
- UIElement.cs
- XmlJsonReader.cs
- CollectionViewGroupRoot.cs
- Attachment.cs
- BookmarkOptionsHelper.cs
- ProgressBarAutomationPeer.cs
- EntityEntry.cs
- Form.cs
- BinaryNode.cs
- xsdvalidator.cs
- DeviceSpecificChoiceCollection.cs
- AnonymousIdentificationModule.cs
- SchemaSetCompiler.cs
- CalendarData.cs
- UnsafeNativeMethods.cs
- ServiceModelSecurityTokenTypes.cs
- SafeEventHandle.cs
- Model3D.cs
- SqlPersonalizationProvider.cs