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
- WhitespaceRuleReader.cs
- EventLog.cs
- TouchEventArgs.cs
- RangeValidator.cs
- SafeFileMappingHandle.cs
- NamespaceEmitter.cs
- SerialReceived.cs
- IpcPort.cs
- CodeTypeDeclarationCollection.cs
- StorageEntityTypeMapping.cs
- EnumBuilder.cs
- AsymmetricSignatureDeformatter.cs
- CategoryNameCollection.cs
- MetadataUtil.cs
- EdmError.cs
- GridErrorDlg.cs
- Menu.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- NamedPipeTransportBindingElement.cs
- HttpListenerException.cs
- SoapDocumentMethodAttribute.cs
- NetworkInformationPermission.cs
- WebPartConnectionsEventArgs.cs
- AmbientLight.cs
- XPathNavigatorKeyComparer.cs
- ClientSideProviderDescription.cs
- WpfKnownMemberInvoker.cs
- _NestedSingleAsyncResult.cs
- altserialization.cs
- ToolBarOverflowPanel.cs
- ReceiveParametersContent.cs
- SchemaNames.cs
- StylusPlugInCollection.cs
- SHA256Managed.cs
- SqlNodeAnnotations.cs
- RubberbandSelector.cs
- DynamicValueConverter.cs
- ControlIdConverter.cs
- AuthorizationSection.cs
- CommonBehaviorsSection.cs
- OrderByQueryOptionExpression.cs
- ContextMenuAutomationPeer.cs
- NativeMethods.cs
- DataGridViewDataConnection.cs
- ProfessionalColorTable.cs
- DataGridViewHitTestInfo.cs
- Vector3DCollectionConverter.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- BindingExpressionBase.cs
- HttpFileCollectionWrapper.cs
- CompModSwitches.cs
- Error.cs
- ServiceDescriptionData.cs
- ThreadExceptionDialog.cs
- WrappedKeySecurityTokenParameters.cs
- TransformValueSerializer.cs
- contentDescriptor.cs
- WebPartDescriptionCollection.cs
- ScrollEvent.cs
- Adorner.cs
- IDQuery.cs
- KeyGesture.cs
- Constraint.cs
- TreeViewCancelEvent.cs
- ScrollData.cs
- ColumnMapProcessor.cs
- OraclePermission.cs
- ColumnMapVisitor.cs
- WebControl.cs
- ScrollEvent.cs
- TripleDESCryptoServiceProvider.cs
- AccessibilityHelperForXpWin2k3.cs
- SqlConnectionPoolGroupProviderInfo.cs
- RepeatInfo.cs
- TimelineGroup.cs
- WebConfigurationHost.cs
- RMPublishingDialog.cs
- WebConfigurationManager.cs
- TextEditorTyping.cs
- ButtonFlatAdapter.cs
- UnknownBitmapEncoder.cs
- DataSourceXmlTextReader.cs
- SchemaElementLookUpTableEnumerator.cs
- ColorMatrix.cs
- CharKeyFrameCollection.cs
- DesignerAdRotatorAdapter.cs
- DataGridViewCellConverter.cs
- CompilerResults.cs
- Listener.cs
- Composition.cs
- StructuralCache.cs
- nulltextcontainer.cs
- LineSegment.cs
- XmlSchemaChoice.cs
- PlanCompilerUtil.cs
- DefaultTextStore.cs
- BCryptSafeHandles.cs
- ChildrenQuery.cs
- EdmToObjectNamespaceMap.cs
- PasswordBox.cs