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
- ControlIdConverter.cs
- Cloud.cs
- XmlEncodedRawTextWriter.cs
- PageParser.cs
- TypeUtil.cs
- ColumnCollection.cs
- ServiceBehaviorElement.cs
- ServiceOperationParameter.cs
- FormViewDeleteEventArgs.cs
- SafeLocalAllocation.cs
- ComboBoxAutomationPeer.cs
- CoTaskMemSafeHandle.cs
- InternalConfigEventArgs.cs
- DetailsViewPagerRow.cs
- WebPartDisplayMode.cs
- DrawListViewColumnHeaderEventArgs.cs
- HyperLinkColumn.cs
- DataBinding.cs
- SelectionPattern.cs
- TraceSource.cs
- ElementUtil.cs
- DataGridDesigner.cs
- IndentedWriter.cs
- XslAstAnalyzer.cs
- HtmlEmptyTagControlBuilder.cs
- BitmapEncoder.cs
- Button.cs
- TextTreeInsertElementUndoUnit.cs
- ScrollableControl.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- SchemaAttDef.cs
- MediaContextNotificationWindow.cs
- JobStaple.cs
- TraceSection.cs
- LocatorGroup.cs
- TryCatch.cs
- BrowsableAttribute.cs
- ContentType.cs
- FileAccessException.cs
- HttpServerVarsCollection.cs
- RequestContext.cs
- ProcessManager.cs
- ProfileSettings.cs
- SystemEvents.cs
- BindingSource.cs
- arclist.cs
- ShaderEffect.cs
- DeferredReference.cs
- XmlUTF8TextReader.cs
- LineVisual.cs
- XmlSerializer.cs
- TargetFrameworkUtil.cs
- PolyBezierSegment.cs
- RSAProtectedConfigurationProvider.cs
- UnmanagedMemoryStreamWrapper.cs
- IndentTextWriter.cs
- ControlIdConverter.cs
- CapabilitiesSection.cs
- WebHttpSecurityElement.cs
- RemotingConfiguration.cs
- XmlSchemaGroupRef.cs
- GenericRootAutomationPeer.cs
- BamlResourceContent.cs
- SpellerInterop.cs
- DefaultSettingsSection.cs
- ScrollChrome.cs
- PolicyStatement.cs
- DataControlPagerLinkButton.cs
- DecoderFallbackWithFailureFlag.cs
- XmlWriter.cs
- ServiceReflector.cs
- OleDbParameter.cs
- AuthenticationSection.cs
- CodeExpressionRuleDeclaration.cs
- Int16Converter.cs
- FactoryMaker.cs
- Run.cs
- TreeViewAutomationPeer.cs
- GenerateScriptTypeAttribute.cs
- StringBuilder.cs
- XPathSingletonIterator.cs
- CommandLibraryHelper.cs
- webbrowsersite.cs
- CustomErrorsSectionWrapper.cs
- DataGridPageChangedEventArgs.cs
- ListSortDescriptionCollection.cs
- AudioBase.cs
- ParseNumbers.cs
- DLinqTableProvider.cs
- EdmItemCollection.OcAssemblyCache.cs
- RuntimeEnvironment.cs
- WsdlInspector.cs
- WebProxyScriptElement.cs
- HttpRuntimeSection.cs
- QueryAccessibilityHelpEvent.cs
- TemplatedWizardStep.cs
- BaseParser.cs
- GAC.cs
- StylusShape.cs
- Exceptions.cs