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
- SystemResourceKey.cs
- ComplexPropertyEntry.cs
- ScrollItemProviderWrapper.cs
- ThemeableAttribute.cs
- DataSourceUtil.cs
- WebPartZoneCollection.cs
- Comparer.cs
- DataGridSortCommandEventArgs.cs
- BulletChrome.cs
- VersionedStream.cs
- KeyConverter.cs
- StorageComplexPropertyMapping.cs
- BinaryObjectWriter.cs
- Blend.cs
- StyleXamlParser.cs
- XslUrlEditor.cs
- UserControlAutomationPeer.cs
- Rect3D.cs
- FocusChangedEventArgs.cs
- DataBindingHandlerAttribute.cs
- UnsafeNativeMethodsTablet.cs
- SoapHttpTransportImporter.cs
- PropertyOverridesDialog.cs
- ClientUtils.cs
- HtmlContainerControl.cs
- HttpCapabilitiesEvaluator.cs
- InkPresenterAutomationPeer.cs
- TextSchema.cs
- FileEnumerator.cs
- ContextStack.cs
- MSAAEventDispatcher.cs
- EnumerableRowCollectionExtensions.cs
- PropertyValueUIItem.cs
- QueryServiceConfigHandle.cs
- Tuple.cs
- WebServiceResponse.cs
- Geometry3D.cs
- ContentAlignmentEditor.cs
- HitTestWithGeometryDrawingContextWalker.cs
- ValueType.cs
- TemplateBindingExtension.cs
- RequestCacheValidator.cs
- TcpTransportManager.cs
- SystemResourceHost.cs
- XmlSchemaType.cs
- ZipIOExtraFieldZip64Element.cs
- PaperSize.cs
- SiteMapDataSource.cs
- TemplateBindingExtensionConverter.cs
- ConstrainedDataObject.cs
- ClockController.cs
- DiscoveryClientChannelBase.cs
- HtmlTableRow.cs
- TypeSource.cs
- HttpStreamXmlDictionaryWriter.cs
- HashRepartitionStream.cs
- WebPartEventArgs.cs
- OpCodes.cs
- MetafileHeader.cs
- TextEditorTyping.cs
- SuppressMergeCheckAttribute.cs
- SchemaMapping.cs
- ItemCollectionEditor.cs
- StateMachine.cs
- ExceptionHandler.cs
- ProcessProtocolHandler.cs
- LightweightCodeGenerator.cs
- RuntimeTrackingProfile.cs
- LinkGrep.cs
- Stopwatch.cs
- CommandTreeTypeHelper.cs
- SmiEventSink_DeferedProcessing.cs
- Utils.cs
- SQLStringStorage.cs
- SiteIdentityPermission.cs
- ByteStream.cs
- EpmTargetTree.cs
- MULTI_QI.cs
- StateBag.cs
- LinqExpressionNormalizer.cs
- PropertyToken.cs
- XmlSecureResolver.cs
- SerialStream.cs
- ListSourceHelper.cs
- DataGridCommandEventArgs.cs
- RegexWriter.cs
- TemplateDefinition.cs
- StylusOverProperty.cs
- WsatServiceCertificate.cs
- InvalidOleVariantTypeException.cs
- WCFBuildProvider.cs
- X509AsymmetricSecurityKey.cs
- LocalizabilityAttribute.cs
- NetDataContractSerializer.cs
- StyleTypedPropertyAttribute.cs
- DataGridColumnFloatingHeader.cs
- FontUnit.cs
- DBDataPermission.cs
- SQLInt16Storage.cs
- TableCellCollection.cs