Code:
/ DotNET / DotNET / 8.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 class.
///
public PathData() {
}
///
///
/// Contains an array of objects
/// that represent the points through which the path is constructed.
///
public PointF[] Points {
get {
return points;
}
set {
points = value;
}
}
///
///
///
/// Contains an array of objects that represent the types of
/// data in the corresponding elements of the array.
///
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ClientSettingsProvider.cs
- ListView.cs
- LeaseManager.cs
- UnsafeNativeMethods.cs
- PenContexts.cs
- WinFormsUtils.cs
- WCFModelStrings.Designer.cs
- CompressionTransform.cs
- _FtpDataStream.cs
- NetworkInformationPermission.cs
- ScrollData.cs
- UIntPtr.cs
- ChildTable.cs
- OracleConnection.cs
- ObjectViewListener.cs
- ControlOperationBehavior.cs
- HtmlHead.cs
- ControlBindingsCollection.cs
- DateRangeEvent.cs
- DbConnectionFactory.cs
- TypeConverterHelper.cs
- VideoDrawing.cs
- PackUriHelper.cs
- DataColumnCollection.cs
- DbMetaDataCollectionNames.cs
- SatelliteContractVersionAttribute.cs
- JapaneseLunisolarCalendar.cs
- XmlWriterSettings.cs
- EraserBehavior.cs
- InfiniteIntConverter.cs
- StrokeIntersection.cs
- ProfessionalColorTable.cs
- ServiceChannelProxy.cs
- GregorianCalendarHelper.cs
- StylusTouchDevice.cs
- KeyNotFoundException.cs
- CryptoApi.cs
- FileInfo.cs
- CodeNamespaceCollection.cs
- TreeViewBindingsEditorForm.cs
- ClientOperationFormatterProvider.cs
- EpmTargetPathSegment.cs
- MLangCodePageEncoding.cs
- ResolvedKeyFrameEntry.cs
- WindowsProgressbar.cs
- TypeDescriptionProvider.cs
- DbgUtil.cs
- PrintDialog.cs
- RefreshEventArgs.cs
- KeyedHashAlgorithm.cs
- IISUnsafeMethods.cs
- XmlText.cs
- securitymgrsite.cs
- BulletDecorator.cs
- MetadataCollection.cs
- SubMenuStyleCollection.cs
- Utils.cs
- XPathPatternParser.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- BoundingRectTracker.cs
- NavigationFailedEventArgs.cs
- ParallelQuery.cs
- SecureUICommand.cs
- XsdBuilder.cs
- PnrpPermission.cs
- CorrelationKey.cs
- Native.cs
- AsyncResult.cs
- Comparer.cs
- NonParentingControl.cs
- EntityDataSourceView.cs
- SizeConverter.cs
- DoubleKeyFrameCollection.cs
- EmptyElement.cs
- RuleElement.cs
- DtrList.cs
- Point3D.cs
- WindowsFormsDesignerOptionService.cs
- BaseTemplateCodeDomTreeGenerator.cs
- TextEditorSpelling.cs
- _ContextAwareResult.cs
- GridViewCommandEventArgs.cs
- BrowserCapabilitiesCodeGenerator.cs
- IIS7WorkerRequest.cs
- SHA512.cs
- DescendentsWalker.cs
- NumberAction.cs
- clipboard.cs
- DrawingGroupDrawingContext.cs
- FontSizeConverter.cs
- XmlElement.cs
- PrivilegedConfigurationManager.cs
- WindowsListView.cs
- RegexNode.cs
- HttpRawResponse.cs
- XPathNode.cs
- CfgParser.cs
- ProxyWebPart.cs
- HttpModuleCollection.cs
- VectorAnimationBase.cs