Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / GuidelineCollection.cs / 1 / GuidelineCollection.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: // The GuidelineSet object represents a set of guidelines // used in rendering for better adjusting rendered figures to device pixel grid. // // History: // 2005/01/17 : [....] - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace System.Windows.Media { ////// The GuidelineSet object represents a set of guide lines /// used in rendering for better adjusting rendered figures to device pixel grid. /// /// public partial class GuidelineSet : Animatable, DUCE.IResource { #region Constructors ////// Default constructor /// public GuidelineSet() { } ////// Constructs a new GuidelineSet object. /// This constructor is internal for now, till we'll find a solution /// for multi-path dynamic guideline implementation. If/when it'll happen, /// it should become "public" so that the next constructor (without "isDynamic' /// argument) may go away. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. /// Usage flag: when true then rendering machine will detect animation state and apply subpixel animation behavior. internal GuidelineSet(double[] guidelinesX, double[] guidelinesY, bool isDynamic) { if (guidelinesX != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesX.Length % 2 == 0); GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesY.Length % 2 == 0); GuidelinesY = new DoubleCollection(guidelinesY); } IsDynamic = isDynamic; } ////// Constructs a new GuidelineSet object. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. public GuidelineSet(double[] guidelinesX, double[] guidelinesY) { if (guidelinesX != null) { GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { GuidelinesY = new DoubleCollection(guidelinesY); } } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FilteredReadOnlyMetadataCollection.cs
- ExtenderProvidedPropertyAttribute.cs
- BindStream.cs
- AttributeXamlType.cs
- _HelperAsyncResults.cs
- BindingContext.cs
- MimePart.cs
- HttpInputStream.cs
- ExceptionValidationRule.cs
- EncoderExceptionFallback.cs
- _HeaderInfo.cs
- XmlValueConverter.cs
- GenericEnumConverter.cs
- DecoratedNameAttribute.cs
- PrivateFontCollection.cs
- ScriptServiceAttribute.cs
- BitmapEffectvisualstate.cs
- PageTheme.cs
- AttachedPropertyMethodSelector.cs
- ConnectionsZone.cs
- DataBindingCollection.cs
- ProxyGenerationError.cs
- NetworkStream.cs
- HostedHttpTransportManager.cs
- OleDbInfoMessageEvent.cs
- ByteFacetDescriptionElement.cs
- WindowsScroll.cs
- TextOutput.cs
- FieldMetadata.cs
- DbParameterHelper.cs
- VariantWrapper.cs
- TargetConverter.cs
- XmlSchemaAppInfo.cs
- InternalRelationshipCollection.cs
- TreeNodeCollectionEditor.cs
- IntegerValidatorAttribute.cs
- Model3DGroup.cs
- SQLBinary.cs
- SettingsPropertyCollection.cs
- AsymmetricSignatureDeformatter.cs
- XmlValidatingReaderImpl.cs
- TextView.cs
- SoapEnumAttribute.cs
- DataSourceDesigner.cs
- ObjectQuery.cs
- BigInt.cs
- BindingWorker.cs
- Icon.cs
- DiscoveryReference.cs
- CmsUtils.cs
- HtmlEmptyTagControlBuilder.cs
- StrongNamePublicKeyBlob.cs
- UpdateRecord.cs
- TrackingRecordPreFilter.cs
- ConfigurationException.cs
- Matrix.cs
- DbConnectionInternal.cs
- SqlCachedBuffer.cs
- TypeSemantics.cs
- DoubleLink.cs
- SaveFileDialogDesigner.cs
- RelatedImageListAttribute.cs
- SmtpFailedRecipientsException.cs
- ConnectorMovedEventArgs.cs
- CodeArgumentReferenceExpression.cs
- ViewGenerator.cs
- ObjectAssociationEndMapping.cs
- Context.cs
- SqlDataSourceCache.cs
- XmlReflectionMember.cs
- CodeDomSerializationProvider.cs
- Tokenizer.cs
- InstanceContext.cs
- ConfigXmlReader.cs
- ListViewItem.cs
- EditorZone.cs
- Duration.cs
- LazyTextWriterCreator.cs
- TCPListener.cs
- HtmlTitle.cs
- ToolStripRenderer.cs
- BitmapEffectGroup.cs
- ElementHostAutomationPeer.cs
- WebPartMovingEventArgs.cs
- ConfigurationStrings.cs
- WebEvents.cs
- WebUtility.cs
- HtmlWindow.cs
- DataTableMappingCollection.cs
- RoutedEventArgs.cs
- ACL.cs
- GuidConverter.cs
- ExpressionNode.cs
- EntityTypeBase.cs
- DataBinding.cs
- RoleGroup.cs
- Vector3DValueSerializer.cs
- SqlMethodCallConverter.cs
- DoubleKeyFrameCollection.cs
- AffineTransform3D.cs