Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / Blend.cs / 1305376 / Blend.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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./// 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
- EntryWrittenEventArgs.cs
- HighContrastHelper.cs
- GetPageNumberCompletedEventArgs.cs
- MatrixAnimationUsingKeyFrames.cs
- ScrollItemProviderWrapper.cs
- DesignerAdapterAttribute.cs
- HtmlTernaryTree.cs
- TdsParameterSetter.cs
- SaveFileDialog.cs
- RelativeSource.cs
- OdbcConnectionHandle.cs
- WindowsListViewGroupHelper.cs
- DocumentGrid.cs
- ServiceModelStringsVersion1.cs
- URIFormatException.cs
- HealthMonitoringSection.cs
- CryptoApi.cs
- NameValueSectionHandler.cs
- EarlyBoundInfo.cs
- TypeLoader.cs
- PhonemeConverter.cs
- ExtendedTransformFactory.cs
- GeometryDrawing.cs
- EventMappingSettingsCollection.cs
- regiisutil.cs
- ObjectConverter.cs
- CommandHelpers.cs
- JsonGlobals.cs
- DataBindEngine.cs
- UInt64.cs
- ActivityInterfaces.cs
- RawContentTypeMapper.cs
- TypeUtil.cs
- NameValueConfigurationElement.cs
- IWorkflowDebuggerService.cs
- PathGeometry.cs
- MultiBindingExpression.cs
- QueryStringParameter.cs
- CodeGeneratorAttribute.cs
- SortKey.cs
- FrameAutomationPeer.cs
- ICspAsymmetricAlgorithm.cs
- ParameterCollectionEditorForm.cs
- SqlCaseSimplifier.cs
- Empty.cs
- RecordsAffectedEventArgs.cs
- SiteMapDataSourceView.cs
- TextSpanModifier.cs
- ObjectDataProvider.cs
- Expander.cs
- RoutedEventValueSerializer.cs
- TagMapCollection.cs
- Function.cs
- BamlRecordReader.cs
- DiscoveryInnerClientAdhocCD1.cs
- ValidationPropertyAttribute.cs
- ColumnMapVisitor.cs
- ZipIOExtraFieldZip64Element.cs
- UseLicense.cs
- UrlAuthFailureHandler.cs
- Baml2006KnownTypes.cs
- XslCompiledTransform.cs
- DeclarativeCatalogPartDesigner.cs
- ContextMenuStripActionList.cs
- GrammarBuilderWildcard.cs
- DataTablePropertyDescriptor.cs
- AutoResetEvent.cs
- WebControlAdapter.cs
- SerialPinChanges.cs
- TextParagraphView.cs
- Blend.cs
- RuleElement.cs
- CodeConstructor.cs
- CodeTypeReferenceCollection.cs
- CompleteWizardStep.cs
- SafeFindHandle.cs
- ToolStripPanelRenderEventArgs.cs
- TargetInvocationException.cs
- _TimerThread.cs
- WebPartManager.cs
- TextStore.cs
- SubMenuStyle.cs
- ThicknessAnimationBase.cs
- SiteMapHierarchicalDataSourceView.cs
- ObjectStateFormatter.cs
- WrappingXamlSchemaContext.cs
- OleDbTransaction.cs
- CompressedStack.cs
- BaseParagraph.cs
- PasswordBox.cs
- IndicShape.cs
- COM2IPerPropertyBrowsingHandler.cs
- ParameterReplacerVisitor.cs
- FormattedTextSymbols.cs
- SimpleLine.cs
- FrameworkTemplate.cs
- Size.cs
- PersonalizationEntry.cs
- ReferencedAssembly.cs
- StructuredTypeEmitter.cs