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
- Stroke.cs
- QueryTaskGroupState.cs
- KoreanCalendar.cs
- SpecialNameAttribute.cs
- LeaseManager.cs
- DataSourceDescriptorCollection.cs
- DragStartedEventArgs.cs
- ScrollProviderWrapper.cs
- SymbolMethod.cs
- NativeCompoundFileAPIs.cs
- ColumnClickEvent.cs
- SoapAttributes.cs
- SchemaObjectWriter.cs
- DeliveryStrategy.cs
- ToolBar.cs
- Formatter.cs
- CodeEventReferenceExpression.cs
- DataGridItemCollection.cs
- RoutedEventArgs.cs
- ExpressionBinding.cs
- HtmlTable.cs
- TableCell.cs
- ConfigurationPropertyCollection.cs
- DisplayInformation.cs
- InvalidProgramException.cs
- ListItemConverter.cs
- BaseTemplateBuildProvider.cs
- DataGridViewCellStateChangedEventArgs.cs
- HttpServerUtilityBase.cs
- DataGridColumnStyleMappingNameEditor.cs
- DataSourceXmlClassAttribute.cs
- ExtentKey.cs
- CollectionEditor.cs
- HttpRuntime.cs
- HMACSHA1.cs
- XmlComplianceUtil.cs
- XmlQualifiedNameTest.cs
- List.cs
- RemoteWebConfigurationHostStream.cs
- SharedDp.cs
- PathFigureCollectionValueSerializer.cs
- GridLength.cs
- ZipPackage.cs
- ItemsControlAutomationPeer.cs
- WsdlBuildProvider.cs
- IsolatedStorageFileStream.cs
- QueryStringParameter.cs
- DecimalAnimationUsingKeyFrames.cs
- AuthenticateEventArgs.cs
- FontStyle.cs
- LambdaCompiler.Expressions.cs
- AxisAngleRotation3D.cs
- RepeatInfo.cs
- DefaultValueConverter.cs
- RegexInterpreter.cs
- CompressionTransform.cs
- BasicExpressionVisitor.cs
- UriExt.cs
- SoundPlayer.cs
- Timer.cs
- ValidationResult.cs
- RegisteredScript.cs
- messageonlyhwndwrapper.cs
- ObjectConverter.cs
- RangeValidator.cs
- CollectionViewSource.cs
- TextTreeTextBlock.cs
- WindowsTokenRoleProvider.cs
- BindingList.cs
- EmbeddedMailObject.cs
- RsaEndpointIdentity.cs
- TransactedBatchContext.cs
- Recipient.cs
- Compiler.cs
- JavaScriptObjectDeserializer.cs
- XmlSchemaAttributeGroup.cs
- Point4DValueSerializer.cs
- ProtocolInformationReader.cs
- DataGridItemEventArgs.cs
- PathGeometry.cs
- XmlSerializerVersionAttribute.cs
- SQLBytesStorage.cs
- TraceUtility.cs
- WebBrowserDocumentCompletedEventHandler.cs
- WebPartEditorOkVerb.cs
- DataRecordInfo.cs
- _FtpControlStream.cs
- Listen.cs
- QueryModel.cs
- _DisconnectOverlappedAsyncResult.cs
- StateMachineWorkflowInstance.cs
- basenumberconverter.cs
- DataRelation.cs
- MethodImplAttribute.cs
- SplashScreen.cs
- Int64Storage.cs
- TextTrailingWordEllipsis.cs
- BaseResourcesBuildProvider.cs
- ResXDataNode.cs
- HwndSourceKeyboardInputSite.cs