Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Advanced / Blend.cs / 2 / 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. /// ///// 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
- SqlMethodTransformer.cs
- UnsafeNativeMethodsCLR.cs
- XmlElementAttributes.cs
- WindowsListView.cs
- TemplateControlCodeDomTreeGenerator.cs
- CombinedHttpChannel.cs
- CollectionCodeDomSerializer.cs
- CapabilitiesRule.cs
- Queue.cs
- WindowsFormsHelpers.cs
- ObjectView.cs
- ExpressionBinding.cs
- RtType.cs
- StringUtil.cs
- AtomParser.cs
- EventBookmark.cs
- LocalFileSettingsProvider.cs
- DrawItemEvent.cs
- Shape.cs
- MemberJoinTreeNode.cs
- PtsContext.cs
- TextTrailingCharacterEllipsis.cs
- OutputCacheSettings.cs
- ValidationErrorEventArgs.cs
- XhtmlTextWriter.cs
- MatchingStyle.cs
- HelpInfo.cs
- panel.cs
- AutomationProperty.cs
- ConstructorBuilder.cs
- ExtendedProtectionPolicyElement.cs
- ColumnClickEvent.cs
- AsymmetricCryptoHandle.cs
- VideoDrawing.cs
- ChangeBlockUndoRecord.cs
- Converter.cs
- SmiRequestExecutor.cs
- DrawingGroupDrawingContext.cs
- ExpressionBindingCollection.cs
- LineGeometry.cs
- MouseActionValueSerializer.cs
- XmlHierarchyData.cs
- KnownColorTable.cs
- BinaryObjectInfo.cs
- FileVersionInfo.cs
- AdornedElementPlaceholder.cs
- TimelineGroup.cs
- SqlExpander.cs
- CodeDomLocalizationProvider.cs
- ParseHttpDate.cs
- MembershipUser.cs
- GenerateTemporaryAssemblyTask.cs
- DataListComponentEditor.cs
- SqlPersistenceProviderFactory.cs
- URL.cs
- CryptoProvider.cs
- DBSchemaTable.cs
- ColumnResult.cs
- PropertyKey.cs
- SystemTcpConnection.cs
- BufferedWebEventProvider.cs
- ConnectionPoolManager.cs
- CodeTypeReferenceExpression.cs
- ChannelManagerBase.cs
- BitmapEffectDrawingContextState.cs
- ToolStripSplitButton.cs
- ProfilePropertySettingsCollection.cs
- Durable.cs
- TextMetrics.cs
- sqlmetadatafactory.cs
- HashHelper.cs
- GridToolTip.cs
- Nullable.cs
- ObjectKeyFrameCollection.cs
- SqlDataSourceStatusEventArgs.cs
- TextBlock.cs
- ValidateNames.cs
- TypeContext.cs
- Int64Storage.cs
- HandlerBase.cs
- StreamGeometry.cs
- WebPartMinimizeVerb.cs
- DbDataReader.cs
- DataColumnMappingCollection.cs
- FilterRepeater.cs
- TimeSpanMinutesConverter.cs
- BamlVersionHeader.cs
- DragEvent.cs
- MaskedTextBoxDesigner.cs
- XmlReader.cs
- WebContext.cs
- ColorMatrix.cs
- OrderedDictionary.cs
- WebPartConnectionsConnectVerb.cs
- WindowsListViewItem.cs
- MdImport.cs
- SecurityTokenException.cs
- CmsInterop.cs
- designeractionbehavior.cs
- SystemIPGlobalProperties.cs