Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / Blend.cs / 1 / Blend.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * Blend.cs * * Abstract: * * Native GDI+ Blend structure. * * Revision History: * * 9/22/1999 [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Drawing2D { using System.Diagnostics; using System; using System.Drawing; ////// /// public sealed class Blend { float[] factors; float[] positions; ////// Defines a blend pattern for a ////// . /// /// /// public Blend() { factors = new float[1]; positions = new float[1]; } ////// Initializes a new instance of the ////// class. /// /// /// public Blend(int count) { factors = new float[count]; positions = new float[count]; } ////// Initializes a new instance of the ////// class with the specified number of factors and positions. /// /// /// Specifies an array of blend factors for the /// gradient. /// public float[] Factors { get { return factors; } set { factors = value; } } ////// /// public float[] Positions { get { return positions; } set { positions = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Specifies an array of blend positions for the gradient. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MemberAssignment.cs
- ObjectSecurityT.cs
- IntegerValidatorAttribute.cs
- MessageFault.cs
- XPathNavigatorReader.cs
- SqlDataSourceQueryEditor.cs
- PanelStyle.cs
- SqlServices.cs
- ImageAnimator.cs
- NativeMethods.cs
- InputProcessorProfilesLoader.cs
- ManifestResourceInfo.cs
- ResourceDescriptionAttribute.cs
- ColumnWidthChangedEvent.cs
- RotationValidation.cs
- XmlIncludeAttribute.cs
- ReceiveParametersContent.cs
- HtmlShimManager.cs
- AddressAlreadyInUseException.cs
- _RequestCacheProtocol.cs
- DynamicILGenerator.cs
- ProtocolsConfigurationHandler.cs
- RegexCaptureCollection.cs
- XmlSchemaSet.cs
- TextRangeProviderWrapper.cs
- TTSVoice.cs
- ConcurrentDictionary.cs
- NameSpaceExtractor.cs
- SqlRecordBuffer.cs
- KeyValueSerializer.cs
- SafeSecurityHandles.cs
- DataKeyCollection.cs
- DeadCharTextComposition.cs
- DateTimeConstantAttribute.cs
- DataReceivedEventArgs.cs
- SplineKeyFrames.cs
- LinearQuaternionKeyFrame.cs
- SqlHelper.cs
- SizeChangedEventArgs.cs
- WindowInteropHelper.cs
- FrameworkPropertyMetadata.cs
- DrawListViewItemEventArgs.cs
- WebResourceAttribute.cs
- ListViewItemSelectionChangedEvent.cs
- Control.cs
- MbpInfo.cs
- SourceChangedEventArgs.cs
- ControlBuilder.cs
- Item.cs
- PolyLineSegmentFigureLogic.cs
- HtmlForm.cs
- CorrelationManager.cs
- HttpCacheVary.cs
- FactoryGenerator.cs
- WorkflowClientDeliverMessageWrapper.cs
- CommonXSendMessage.cs
- OutOfProcStateClientManager.cs
- SendingRequestEventArgs.cs
- PerformanceCounterLib.cs
- ItemContainerPattern.cs
- NavigationHelper.cs
- ObsoleteAttribute.cs
- ListViewHitTestInfo.cs
- BitmapEffectInputConnector.cs
- QuaternionRotation3D.cs
- AttributeTable.cs
- TreeNodeBinding.cs
- ExpandableObjectConverter.cs
- ExtendedTransformFactory.cs
- Pool.cs
- ObjectSet.cs
- JavaScriptString.cs
- DataGridViewRowCollection.cs
- ScriptHandlerFactory.cs
- EntityEntry.cs
- ColumnReorderedEventArgs.cs
- ZipPackage.cs
- PagerSettings.cs
- PathData.cs
- ConstrainedGroup.cs
- ExceptionUtil.cs
- CharAnimationBase.cs
- InteropAutomationProvider.cs
- ContentValidator.cs
- Int64AnimationUsingKeyFrames.cs
- InnerItemCollectionView.cs
- DecimalAnimationBase.cs
- SqlWebEventProvider.cs
- XmlILAnnotation.cs
- TemplateNameScope.cs
- PropertyNames.cs
- NetworkAddressChange.cs
- TraceListener.cs
- X509CertificateCollection.cs
- ManagementEventArgs.cs
- XslAst.cs
- SessionEndedEventArgs.cs
- ConfigurationManagerInternalFactory.cs
- TextTreeDeleteContentUndoUnit.cs
- AuthenticateEventArgs.cs