Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / PathData.cs / 1 / PathData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * PathData.cs * * Abstract: * * COM+ wrapper for GDI+ path data objects * * Revision History: * * 12/22/1998 [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Drawing2D { using System.Diagnostics; using System.Drawing; using System; /** * Represent the internal data of a path object */ ////// /// Contains the graphical data that makes up a /// public sealed class PathData { PointF[] points; byte[] types; ///. /// /// /// Initializes a new instance of the public PathData() { } ///class. /// /// /// Contains an array of public PointF[] Points { get { return points; } set { points = value; } } ///objects /// that represent the points through which the path is constructed. /// /// /// public byte[] Types { get { return types; } set { types = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Contains an array of ///objects that represent the types of /// data in the corresponding elements of the array. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlUtil.cs
- HyperLinkStyle.cs
- ColorKeyFrameCollection.cs
- sqlnorm.cs
- CryptoKeySecurity.cs
- ZoomPercentageConverter.cs
- SchemaImporterExtensionsSection.cs
- TimeSpanMinutesConverter.cs
- AnnotationComponentManager.cs
- EntityDataSourceState.cs
- FixedSOMLineCollection.cs
- ChineseLunisolarCalendar.cs
- ReflectionUtil.cs
- ToggleButtonAutomationPeer.cs
- Collection.cs
- SourceFileBuildProvider.cs
- SafeEventHandle.cs
- PointAnimationClockResource.cs
- PageStatePersister.cs
- ServiceParser.cs
- SafeNativeMethodsCLR.cs
- CompareValidator.cs
- DescendantOverDescendantQuery.cs
- SvcMapFileLoader.cs
- RTTypeWrapper.cs
- AuthenticationException.cs
- DoubleAnimationUsingKeyFrames.cs
- DataGridViewCellStyleChangedEventArgs.cs
- DbException.cs
- WindowsTokenRoleProvider.cs
- DataTableClearEvent.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- XmlWriter.cs
- GridItem.cs
- XPathDocument.cs
- HwndMouseInputProvider.cs
- NotifyCollectionChangedEventArgs.cs
- EntitySet.cs
- TargetParameterCountException.cs
- ParameterModifier.cs
- TreeNodeCollection.cs
- DatasetMethodGenerator.cs
- VisualStyleInformation.cs
- _DisconnectOverlappedAsyncResult.cs
- ResponseBodyWriter.cs
- CapabilitiesUse.cs
- ToolStripDropDownClosingEventArgs.cs
- ICspAsymmetricAlgorithm.cs
- XmlSchemaParticle.cs
- InkCollectionBehavior.cs
- WpfKnownType.cs
- DynamicPropertyHolder.cs
- initElementDictionary.cs
- SelectionProviderWrapper.cs
- OneOf.cs
- SqlDataReader.cs
- ConnectionPointConverter.cs
- DynamicDataManager.cs
- PngBitmapDecoder.cs
- DispatcherFrame.cs
- CellNormalizer.cs
- XmlElementAttributes.cs
- ButtonRenderer.cs
- TextEditorLists.cs
- CqlGenerator.cs
- _FtpDataStream.cs
- WebReferencesBuildProvider.cs
- Transform.cs
- CompilerGeneratedAttribute.cs
- VirtualizingPanel.cs
- XmlNamespaceDeclarationsAttribute.cs
- SqlParameterizer.cs
- ArrayList.cs
- ReadOnlyCollection.cs
- SymLanguageType.cs
- PnrpPermission.cs
- RowTypeElement.cs
- ProfilePropertySettingsCollection.cs
- WorkflowWebHostingModule.cs
- WebBrowserHelper.cs
- SendKeys.cs
- GlyphManager.cs
- HtmlHead.cs
- ObjectListItem.cs
- LayoutInformation.cs
- ExtendedProperty.cs
- WindowsStartMenu.cs
- WindowsContainer.cs
- DependencyProperty.cs
- DataContractSerializerFaultFormatter.cs
- TypeDescriptionProviderAttribute.cs
- _IPv6Address.cs
- PackageDigitalSignature.cs
- WmlTextBoxAdapter.cs
- WindowInteropHelper.cs
- TextBox.cs
- PagedControl.cs
- TreeNodeMouseHoverEvent.cs
- InheritedPropertyChangedEventArgs.cs
- FixedSOMGroup.cs