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
- TextReader.cs
- WebConfigurationHost.cs
- Vector3DCollectionConverter.cs
- Rotation3DKeyFrameCollection.cs
- FtpWebRequest.cs
- Method.cs
- SafeArrayTypeMismatchException.cs
- base64Transforms.cs
- TextPattern.cs
- TableLayoutStyle.cs
- TextServicesProperty.cs
- ProfileProvider.cs
- ProfilePropertySettings.cs
- DeferredSelectedIndexReference.cs
- NamespaceInfo.cs
- DetailsViewActionList.cs
- TabItemWrapperAutomationPeer.cs
- MethodBuilderInstantiation.cs
- ProxyGenerator.cs
- CombinedGeometry.cs
- XsdBuildProvider.cs
- PrincipalPermission.cs
- CqlErrorHelper.cs
- ToolStripDropDownClosingEventArgs.cs
- _LocalDataStoreMgr.cs
- TableLayoutSettingsTypeConverter.cs
- Button.cs
- _TimerThread.cs
- GlobalizationSection.cs
- CoreSwitches.cs
- DataReceivedEventArgs.cs
- VirtualPathUtility.cs
- BuildDependencySet.cs
- VideoDrawing.cs
- InstalledFontCollection.cs
- MarkedHighlightComponent.cs
- GridViewAutomationPeer.cs
- ArgumentNullException.cs
- CodeTypeDelegate.cs
- Authorization.cs
- MouseOverProperty.cs
- DocumentPageView.cs
- AnnouncementService.cs
- CookieHandler.cs
- CellLabel.cs
- DispatcherExceptionEventArgs.cs
- ClientProxyGenerator.cs
- Configuration.cs
- StateMachineHistory.cs
- SystemBrushes.cs
- Run.cs
- CompoundFileReference.cs
- TripleDESCryptoServiceProvider.cs
- ObjectTypeMapping.cs
- RecordManager.cs
- PeerObject.cs
- SymbolType.cs
- WebBrowserUriTypeConverter.cs
- GlyphElement.cs
- ChildTable.cs
- VisualStyleElement.cs
- ArraySegment.cs
- DockPattern.cs
- MetadataWorkspace.cs
- NameValueCollection.cs
- TextTreeRootTextBlock.cs
- XmlDataSourceView.cs
- DataTableNewRowEvent.cs
- PageParserFilter.cs
- HtmlEncodedRawTextWriter.cs
- WinEventQueueItem.cs
- WriteableBitmap.cs
- RotateTransform.cs
- DefaultParameterValueAttribute.cs
- BitmapEffectInput.cs
- TextRangeAdaptor.cs
- BitmapEffectInput.cs
- SoapIncludeAttribute.cs
- COM2IDispatchConverter.cs
- ParameterCollectionEditor.cs
- AnnotationResource.cs
- MailWriter.cs
- RemotingServices.cs
- DocumentGridContextMenu.cs
- ViewStateException.cs
- ConstraintEnumerator.cs
- Assert.cs
- BitmapSource.cs
- DocumentPaginator.cs
- streamingZipPartStream.cs
- XMLSyntaxException.cs
- Drawing.cs
- AspProxy.cs
- Page.cs
- TypeHelpers.cs
- QueryAccessibilityHelpEvent.cs
- HtmlImageAdapter.cs
- TypeDescriptor.cs
- AsyncCompletedEventArgs.cs
- DynamicDataResources.Designer.cs