Canonical Property Names

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Canonical Property Names

Post by TheQwerty »

It appears that Microsoft's solution for accessing properties, since their index can change and their mnemonic name is localized to the system language, is to instead reference the property by its canonical keyword.

Keyword Use in Local Languages:
In Windows 7 and later, mnemonic keywords work in the system language only, such as German keywords only on a German operating system, and English keywords only on an English operating system. System.Author is a canonical keyword, and the mnemonic value for the System.Author property is Author, for example. The introduction of canonical keywords compensates for the fact that English mnemonic keywords are no longer universally recognized on all operating systems regardless of language, as was the case in Windows Vista and earlier.
It seems that XY already has some support for this in the property SC, though I haven't the time to fully check and verify this - so please try and report back. ;)

Code: Select all

::echo property('System.DateModified');
::echo property('System.Video.FrameWidth') . 'x' . property('System.Video.FrameHeight');
For now you can reference Microsoft's list for the canonical names, but it would be nice if we could get them into the GUI somewhere. I'm thinking they'd be okay appended to the items in the File Info Tips and the Custom Column > Select Property lists (i.e. 'Frame height [System.Video.FrameHeight]').

highend
Posts: 14942
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Canonical Property Names

Post by highend »

That's indeed a much better approach!

http://msdn.microsoft.com/en-us/library ... 85%29.aspx

This lists all System. ... keywords but neither Firefox, nor Chrome shows System.Video.<...> on that page (it ends with: System.Trademarks). Are my browsers borked? :)
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 66294
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Canonical Property Names

Post by admin »

Ah! Finally some sense in the system! :beer:

Seems to work out of the box with XY. On an image file:

Code: Select all

::echo property('System.Image.HorizontalSize') . 'x' . property('System.Image.VerticalSize');
Here is the mother list it seems:
http://msdn.microsoft.com/en-us/library ... 85%29.aspx

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Re: Canonical Property Names

Post by TheQwerty »

highend wrote:This lists all System. ... keywords but neither Firefox, nor Chrome shows System.Video.<...> on that page (it ends with: System.Trademarks). Are my browsers borked? :)
Yeah the listing is a bit weird. I expected either these items to be 'System.System.*' or for the Video properties to actually be 'Video.*'.

Hopefully, it won't be long until Don exposes them to us in a friendlier manner. ;)

Enternal
Posts: 1175
Joined: 10 Jan 2012 18:26

Re: Canonical Property Names

Post by Enternal »

Woah. This is immensely useful. The index method is always a bit of a pain and Don's own property search does not work very well for me at times (sorry Don :ninja:) but this should do it! This property name methods is just like how many programming languages handle their libraries isn't it? I remember C# using something like this and so does VB.NET.

EDIT: This is now part of my notes (includes every single keyword):

Code: Select all

http://msdn.microsoft.com/en-us/library/windows/desktop/bb266512(v=vs.85).aspx#_keyword_use_in_local_languages
http://msdn.microsoft.com/en-us/library/windows/desktop/dd561977%28v=vs.85%29.aspx
http://xyplorer.com/xyfc/viewtopic.php?f=3&t=13252

Examples:
::echo property('System.DateModified');
::echo property('System.Video.FrameWidth') . 'x' . property('System.Video.FrameHeight');
::echo property('System.Image.HorizontalSize') . 'x' . property('System.Image.VerticalSize');

System.Calendar.Duration
System.Calendar.IsOnline
System.Calendar.IsRecurring
System.Calendar.Location
System.Calendar.OptionalAttendeeAddresses
System.Calendar.OptionalAttendeeNames
System.Calendar.OrganizerAddress
System.Calendar.OrganizerName
System.Calendar.ReminderTime
System.Calendar.RequiredAttendeeAddresses
System.Calendar.RequiredAttendeeNames
System.Calendar.Resources
System.Calendar.ResponseStatus
System.Calendar.ShowTimeAs
System.Calendar.ShowTimeAsText
System.Communication.AccountName
System.Communication.DateItemExpires
System.Communication.FollowupIconIndex
System.Communication.HeaderItem
System.Communication.PolicyTag
System.Communication.SecurityFlags
System.Communication.Suffix
System.Communication.TaskStatus
System.Communication.TaskStatusText
System.Computer.DecoratedFreeSpace
System.Contact.Anniversary
System.Contact.AssistantName
System.Contact.AssistantTelephone
System.Contact.Birthday
System.Contact.BusinessAddress
System.Contact.BusinessAddressCity
System.Contact.BusinessAddressCountry
System.Contact.BusinessAddressPostalCode
System.Contact.BusinessAddressPostOfficeBox
System.Contact.BusinessAddressState
System.Contact.BusinessAddressStreet
System.Contact.BusinessFaxNumber
System.Contact.BusinessHomePage
System.Contact.BusinessTelephone
System.Contact.CallbackTelephone
System.Contact.CarTelephone
System.Contact.Children
System.Contact.CompanyMainTelephone
System.Contact.Department
System.Contact.EmailAddress
System.Contact.EmailAddress2
System.Contact.EmailAddress3
System.Contact.EmailAddresses
System.Contact.EmailName
System.Contact.FileAsName
System.Contact.FirstName
System.Contact.FullName
System.Contact.Gender
System.Contact.GenderValue
System.Contact.Hobbies
System.Contact.HomeAddress
System.Contact.HomeAddressCity
System.Contact.HomeAddressCountry
System.Contact.HomeAddressPostalCode
System.Contact.HomeAddressPostOfficeBox
System.Contact.HomeAddressState
System.Contact.HomeAddressStreet
System.Contact.HomeFaxNumber
System.Contact.HomeTelephone
System.Contact.IMAddress
System.Contact.Initials
System.Contact.JA.CompanyNamePhonetic
System.Contact.JA.FirstNamePhonetic
System.Contact.JA.LastNamePhonetic
System.Contact.JobTitle
System.Contact.Label
System.Contact.LastName
System.Contact.MailingAddress
System.Contact.MiddleName
System.Contact.MobileTelephone
System.Contact.NickName
System.Contact.OfficeLocation
System.Contact.OtherAddress
System.Contact.OtherAddressCity
System.Contact.OtherAddressCountry
System.Contact.OtherAddressPostalCode
System.Contact.OtherAddressPostOfficeBox
System.Contact.OtherAddressState
System.Contact.OtherAddressStreet
System.Contact.PagerTelephone
System.Contact.PersonalTitle
System.Contact.PrimaryAddressCity
System.Contact.PrimaryAddressCountry
System.Contact.PrimaryAddressPostalCode
System.Contact.PrimaryAddressPostOfficeBox
System.Contact.PrimaryAddressState
System.Contact.PrimaryAddressStreet
System.Contact.PrimaryEmailAddress
System.Contact.PrimaryTelephone
System.Contact.Profession
System.Contact.SpouseName
System.Contact.Suffix
System.Contact.TelexNumber
System.Contact.TTYTDDTelephone
System.Contact.WebPage
System.Device.PrinterURL
System.DeviceInterface.PrinterDriverDirectory
System.DeviceInterface.PrinterDriverName
System.DeviceInterface.PrinterName
System.DeviceInterface.PrinterPortName
System.Devices.BatteryLife
System.Devices.BatteryPlusCharging
System.Devices.BatteryPlusChargingText
System.Devices.Category
System.Devices.CategoryGroup
System.Devices.CategoryPlural
System.Devices.ChargingState
System.Devices.Connected
System.Devices.ContainerId
System.Devices.DefaultTooltip
System.Devices.DeviceDescription1
System.Devices.DeviceDescription2
System.Devices.DiscoveryMethod
System.Devices.FriendlyName
System.Devices.FunctionPaths
System.Devices.InterfacePaths
System.Devices.IsDefault
System.Devices.IsNetworkConnected
System.Devices.IsShared
System.Devices.IsSoftwareInstalling
System.Devices.LaunchDeviceStageFromExplorer
System.Devices.LocalMachine
System.Devices.Manufacturer
System.Devices.MissedCalls
System.Devices.ModelName
System.Devices.ModelNumber
System.Devices.NetworkedTooltip
System.Devices.NetworkName
System.Devices.NetworkType
System.Devices.NewPictures
System.Devices.Notification
System.Devices.Notifications.LowBattery
System.Devices.Notifications.MissedCall
System.Devices.Notifications.NewMessage
System.Devices.Notifications.NewVoicemail
System.Devices.Notifications.StorageFull
System.Devices.Notifications.StorageFullLinkText
System.Devices.NotificationStore
System.Devices.NotWorkingProperly
System.Devices.Paired
System.Devices.PrimaryCategory
System.Devices.Roaming
System.Devices.SafeRemovalRequired
System.Devices.SharedTooltip
System.Devices.SignalStrength
System.Devices.Status1
System.Devices.Status2
System.Devices.StorageCapacity
System.Devices.StorageFreeSpace
System.Devices.StorageFreeSpacePercent
System.Devices.TextMessages
System.Devices.Voicemail
System.DRM.DatePlayExpires
System.DRM.DatePlayStarts
System.DRM.Description
System.DRM.IsProtected
System.DRM.PlayCount
System.Document.ByteCount
System.Document.CharacterCount
System.Document.ClientID
System.Document.Contributor
System.Document.DateCreated
System.Document.DatePrinted
System.Document.DateSaved
System.Document.Division
System.Document.DocumentID
System.Document.HiddenSlideCount
System.Document.LastAuthor
System.Document.LineCount
System.Document.Manager
System.Document.MultimediaClipCount
System.Document.NoteCount
System.Document.PageCount
System.Document.ParagraphCount
System.Document.PresentationFormat
System.Document.RevisionNumber
System.Document.Security
System.Document.SlideCount
System.Document.Template
System.Document.TotalEditingTime
System.Document.Version
System.Document.WordCount
System.GPS.Altitude
System.GPS.AltitudeDenominator
System.GPS.AltitudeNumerator
System.GPS.AltitudeRef
System.GPS.AreaInformation
System.GPS.Date
System.GPS.DestBearing
System.GPS.DestBearingDenominator
System.GPS.DestBearingNumerator
System.GPS.DestBearingRef
System.GPS.DestDistance
System.GPS.DestDistanceDenominator
System.GPS.DestDistanceNumerator
System.GPS.DestDistanceRef
System.GPS.DestLatitude
System.GPS.DestLatitudeDenominator
System.GPS.DestLatitudeNumerator
System.GPS.DestLatitudeRef
System.GPS.DestLongitude
System.GPS.DestLongitudeDenominator
System.GPS.DestLongitudeNumerator
System.GPS.DestLongitudeRef
System.GPS.Differential
System.GPS.DOP
System.GPS.DOPDenominator
System.GPS.DOPNumerator
System.GPS.ImgDirection
System.GPS.ImgDirectionDenominator
System.GPS.ImgDirectionNumerator
System.GPS.ImgDirectionRef
System.GPS.Latitude
System.GPS.LatitudeDenominator
System.GPS.LatitudeNumerator
System.GPS.LatitudeRef
System.GPS.Longitude
System.GPS.LongitudeDenominator
System.GPS.LongitudeNumerator
System.GPS.LongitudeRef
System.GPS.MapDatum
System.GPS.MeasureMode
System.GPS.ProcessingMethod
System.GPS.Satellites
System.GPS.Speed
System.GPS.SpeedDenominator
System.GPS.SpeedNumerator
System.GPS.SpeedRef
System.GPS.Status
System.GPS.Track
System.GPS.TrackDenominator
System.GPS.TrackNumerator
System.GPS.TrackRef
System.GPS.VersionID
System.Identity.InternetSid
System.Identity.LogonStatusString
System.Identity.PrimarySid
System.Identity.ProviderData
System.Identity.QualifiedUserName
System.Image.BitDepth
System.Image.ColorSpace
System.Image.CompressedBitsPerPixel
System.Image.CompressedBitsPerPixelDenominator
System.Image.CompressedBitsPerPixelNumerator
System.Image.Compression
System.Image.CompressionText
System.Image.Dimensions
System.Image.HorizontalResolution
System.Image.HorizontalSize
System.Image.ImageID
System.Image.ResolutionUnit
System.Image.VerticalResolution
System.Image.VerticalSize
System.Journal.Contacts
System.Journal.EntryType
System.Link.Arguments
System.Link.Comment
System.Link.DateVisited
System.Link.Description
System.Link.Status
System.Link.TargetExtension
System.Link.TargetParsingPath
System.Link.TargetSFGAOFlags
System.Media.AuthorUrl
System.Media.AverageLevel
System.Media.ClassPrimaryID
System.Media.ClassSecondaryID
System.Media.CollectionGroupID
System.Media.CollectionID
System.Media.ContentDistributor
System.Media.ContentID
System.Media.CreatorApplication
System.Media.CreatorApplicationVersion
System.Media.DateEncoded
System.Media.DateReleased
System.Media.Duration
System.Media.DVDID
System.Media.EncodedBy
System.Media.EncodingSettings
System.Media.FrameCount
System.Media.MCDI
System.Media.MetadataContentProvider
System.Media.Producer
System.Media.PromotionUrl
System.Media.ProtectionType
System.Media.ProviderRating
System.Media.ProviderStyle
System.Media.Publisher
System.Media.SubscriptionContentId
System.Media.SubTitle
System.Media.UniqueFileIdentifier
System.Media.UserNoAutoInfo
System.Media.UserWebUrl
System.Media.Writer
System.Media.Year
System.Message.AttachmentContents
System.Message.AttachmentNames
System.Message.BccAddress
System.Message.BccName
System.Message.CcAddress
System.Message.CcName
System.Message.ConversationID
System.Message.ConversationIndex
System.Message.DateReceived
System.Message.DateSent
System.Message.Flags
System.Message.FromAddress
System.Message.FromName
System.Message.HasAttachments
System.Message.IsFwdOrReply
System.Message.MessageClass
System.Message.ProofInProgress
System.Message.SenderAddress
System.Message.SenderName
System.Message.Store
System.Message.ToAddress
System.Message.ToDoFlags
System.Message.ToDoTitle
System.Message.ToName
System.Music.AlbumArtist
System.Music.AlbumID
System.Music.AlbumTitle
System.Music.Artist
System.Music.BeatsPerMinute
System.Music.Composer
System.Music.Conductor
System.Music.ContentGroupDescription
System.Music.DisplayArtist
System.Music.Genre
System.Music.InitialKey
System.Music.IsCompilation
System.Music.Lyrics
System.Music.Mood
System.Music.PartOfSet
System.Music.Period
System.Music.SynchronizedLyrics
System.Music.TrackNumber
System.Note.Color
System.Note.ColorText
System.Photo.Aperture
System.Photo.ApertureDenominator
System.Photo.ApertureNumerator
System.Photo.Brightness
System.Photo.BrightnessDenominator
System.Photo.BrightnessNumerator
System.Photo.CameraManufacturer
System.Photo.CameraModel
System.Photo.CameraSerialNumber
System.Photo.Contrast
System.Photo.ContrastText
System.Photo.DateTaken
System.Photo.DigitalZoom
System.Photo.DigitalZoomDenominator
System.Photo.DigitalZoomNumerator
System.Photo.Event
System.Photo.EXIFVersion
System.Photo.ExposureBias
System.Photo.ExposureBiasDenominator
System.Photo.ExposureBiasNumerator
System.Photo.ExposureIndex
System.Photo.ExposureIndexDenominator
System.Photo.ExposureIndexNumerator
System.Photo.ExposureProgram
System.Photo.ExposureProgramText
System.Photo.ExposureTime
System.Photo.ExposureTimeDenominator
System.Photo.ExposureTimeNumerator
System.Photo.Flash
System.Photo.FlashEnergy
System.Photo.FlashEnergyDenominator
System.Photo.FlashEnergyNumerator
System.Photo.FlashManufacturer
System.Photo.FlashModel
System.Photo.FlashText
System.Photo.FNumber
System.Photo.FNumberDenominator
System.Photo.FNumberNumerator
System.Photo.FocalLength
System.Photo.FocalLengthDenominator
System.Photo.FocalLengthInFilm
System.Photo.FocalLengthNumerator
System.Photo.FocalPlaneXResolution
System.Photo.FocalPlaneXResolutionDenominator
System.Photo.FocalPlaneXResolutionNumerator
System.Photo.FocalPlaneYResolution
System.Photo.FocalPlaneYResolutionDenominator
System.Photo.FocalPlaneYResolutionNumerator
System.Photo.GainControl
System.Photo.GainControlDenominator
System.Photo.GainControlNumerator
System.Photo.GainControlText
System.Photo.ISOSpeed
System.Photo.LensManufacturer
System.Photo.LensModel
System.Photo.LightSource
System.Photo.MakerNote
System.Photo.MakerNoteOffset
System.Photo.MaxAperture
System.Photo.MaxApertureDenominator
System.Photo.MaxApertureNumerator
System.Photo.MeteringMode
System.Photo.MeteringModeText
System.Photo.Orientation
System.Photo.OrientationText
System.Photo.PeopleNames
System.Photo.PhotometricInterpretation
System.Photo.PhotometricInterpretationText
System.Photo.ProgramMode
System.Photo.ProgramModeText
System.Photo.RelatedSoundFile
System.Photo.Saturation
System.Photo.SaturationText
System.Photo.Sharpness
System.Photo.SharpnessText
System.Photo.ShutterSpeed
System.Photo.ShutterSpeedDenominator
System.Photo.ShutterSpeedNumerator
System.Photo.SubjectDistance
System.Photo.SubjectDistanceDenominator
System.Photo.SubjectDistanceNumerator
System.Photo.TagViewAggregate
System.Photo.TranscodedForSync
System.Photo.WhiteBalance
System.Photo.WhiteBalanceText
System.PropGroup.Advanced
System.PropGroup.Audio
System.PropGroup.Calendar
System.PropGroup.Camera
System.PropGroup.Contact
System.PropGroup.Content
System.PropGroup.Description
System.PropGroup.FileSystem
System.PropGroup.General
System.PropGroup.GPS
System.PropGroup.Image
System.PropGroup.Media
System.PropGroup.MediaAdvanced
System.PropGroup.Message
System.PropGroup.Music
System.PropGroup.Origin
System.PropGroup.PhotoAdvanced
System.PropGroup.RecordedTV
System.PropGroup.Video
System.PropList.ConflictPrompt
System.PropList.ContentViewModeForBrowse
System.PropList.ContentViewModeForSearch
System.PropList.ExtendedTileInfo
System.PropList.FileOperationPrompt
System.PropList.FullDetails
System.PropList.InfoTip
System.PropList.NonPersonal
System.PropList.PreviewDetails
System.PropList.PreviewTitle
System.PropList.QuickTip
System.PropList.TileInfo
System.PropList.XPDetailsPanel
System.RecordedTV.ChannelNumber
System.RecordedTV.Credits
System.RecordedTV.DateContentExpires
System.RecordedTV.EpisodeName
System.RecordedTV.IsATSCContent
System.RecordedTV.IsClosedCaptioningAvailable
System.RecordedTV.IsDTVContent
System.RecordedTV.IsHDContent
System.RecordedTV.IsRepeatBroadcast
System.RecordedTV.IsSAP
System.RecordedTV.NetworkAffiliation
System.RecordedTV.OriginalBroadcastDate
System.RecordedTV.ProgramDescription
System.RecordedTV.RecordingTime
System.RecordedTV.StationCallSign
System.RecordedTV.StationName
System.Search.AutoSummary
System.Search.ContainerHash
System.Search.Contents
System.Search.EntryID
System.Search.ExtendedProperties
System.Search.GatherTime
System.Search.HitCount
System.Search.IsClosedDirectory
System.Search.IsFullyContained
System.Search.QueryFocusedSummary
System.Search.QueryFocusedSummaryWithFallback
System.Search.Rank
System.Search.Store
System.Search.UrlToIndex
System.Search.UrlToIndexWithModificationTime
System.DescriptionID
System.InfoTipText
System.InternalName
System.Link.TargetSFGAOFlagsStrings
System.Link.TargetUrl
System.NamespaceCLSID
System.Shell.SFGAOFlagsStrings
System.AppUserModel.ExcludeFromShowInNewInstall
System.AppUserModel.ID
System.AppUserModel.IsDestListSeparator
System.AppUserModel.PreventPinning
System.AppUserModel.RelaunchCommand
System.AppUserModel.RelaunchDisplayNameResource
System.AppUserModel.RelaunchIconResource
System.Software.DateLastUsed
System.Software.ProductName
System.Sync.Comments
System.Sync.ConflictDescription
System.Sync.ConflictFirstLocation
System.Sync.ConflictSecondLocation
System.Sync.HandlerCollectionID
System.Sync.HandlerID
System.Sync.HandlerName
System.Sync.HandlerType
System.Sync.HandlerTypeLabel
System.Sync.ItemID
System.Sync.ItemName
System.Sync.ProgressPercentage
System.Sync.State
System.Sync.Status
System.AcquisitionID
System.ApplicationName
System.Author
System.Capacity
System.Category
System.Comment
System.Company
System.ComputerName
System.ContainedItems
System.ContentStatus
System.ContentType
System.Copyright
System.DateAccessed
System.DateAcquired
System.DateArchived
System.DateCompleted
System.DateCreated
System.DateImported
System.DateModified
System.DueDate
System.EndDate
System.FileAllocationSize
System.FileAttributes
System.FileCount
System.FileDescription
System.FileExtension
System.FileFRN
System.FileName
System.FileOwner
System.FileVersion
System.FindData
System.FlagColor
System.FlagColorText
System.FlagStatus
System.FlagStatusText
System.FreeSpace
System.FullText
System.Identity
System.Identity.Blob
System.Identity.DisplayName
System.Identity.IsMeIdentity
System.Identity.PrimaryEmailAddress
System.Identity.ProviderID
System.Identity.UniqueID
System.Identity.UserName
System.IdentityProvider.Name
System.IdentityProvider.Picture
System.ImageParsingName
System.Importance
System.ImportanceText
System.IsAttachment
System.IsDefaultNonOwnerSaveLocation
System.IsDefaultSaveLocation
System.IsDeleted
System.IsEncrypted
System.IsFlagged
System.IsFlaggedComplete
System.IsIncomplete
System.IsLocationSupported
System.IsPinnedToNameSpaceTree
System.IsRead
System.IsSearchOnlyItem
System.IsSendToTarget
System.IsShared
System.ItemAuthors
System.ItemClassType
System.ItemDate
System.ItemFolderNameDisplay
System.ItemFolderPathDisplay
System.ItemFolderPathDisplayNarrow
System.ItemName
System.ItemNameDisplay
System.ItemNamePrefix
System.ItemParticipants
System.ItemPathDisplay
System.ItemPathDisplayNarrow
System.ItemType
System.ItemTypeText
System.ItemUrl
System.Keywords
System.Kind
System.KindText
System.Language
System.LayoutPattern.ContentViewModeForBrowse
System.LayoutPattern.ContentViewModeForSearch
System.MileageInformation
System.MIMEType
System.Null
System.OfflineAvailability
System.OfflineStatus
System.OriginalFileName
System.OwnerSID
System.ParentalRating
System.ParentalRatingReason
System.ParentalRatingsOrganization
System.ParsingBindContext
System.ParsingName
System.ParsingPath
System.PerceivedType
System.PercentFull
System.Priority
System.PriorityText
System.Project
System.ProviderItemID
System.Rating
System.RatingText
System.Sensitivity
System.SensitivityText
System.SFGAOFlags
System.SharedWith
System.ShareUserRating
System.SharingStatus
System.Shell.OmitFromView
System.SimpleRating
System.Size
System.SoftwareUsed
System.SourceItem
System.StartDate
System.Status
System.Subject
System.Thumbnail
System.ThumbnailCacheId
System.ThumbnailStream
System.Title
System.TotalFileSize
System.Trademarks
System.Task.BillingInformation
System.Task.CompletionStatus
System.Task.Owner
System.Video.Compression
System.Video.Director
System.Video.EncodingBitrate
System.Video.FourCC
System.Video.FrameHeight
System.Video.FrameRate
System.Video.FrameWidth
System.Video.HorizontalAspectRatio
System.Video.SampleSize
System.Video.StreamName
System.Video.StreamNumber
System.Video.TotalBitrate
System.Video.TranscodedForSync
System.Video.VerticalAspectRatio
System.Volume.FileSystem
System.Volume.IsMappedDrive
System.Volume.IsRoot
[/size]

binocular222
Posts: 1423
Joined: 04 Nov 2008 05:35
Location: Win11, Win10, 100% Scaling

Re: Canonical Property Names

Post by binocular222 »

Should mention this tip in help file - property() command or somewhere else
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

PeterH
Posts: 2827
Joined: 21 Nov 2005 20:39
Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%

Re: Canonical Property Names

Post by PeterH »

binocular222 wrote:Should mention this tip in help file - property() command or somewhere else
I think: at least at Help for Property()

If you find another place it fits: add it there, too :P

But I think Property() is just the "base" to find it.

kmccabe
Posts: 13
Joined: 03 Sep 2014 18:27

Re: Canonical Property Names

Post by kmccabe »

binocular222 wrote:Should mention this tip in help file - property() command or somewhere else
In addition, I suggest it gets an honorable mention in the Help at "Find Files by Meta Properties" section of the "Find Files" topic.

There it says, "A list is available in Configuration | File Info Tips", but I fail to find it that way.

admin
Site Admin
Posts: 66294
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Canonical Property Names

Post by admin »

Yep, done. :tup:

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: Canonical Property Names

Post by bdeshi »

admin wrote:I have created a listing here (copied from the list here: http://www.xyplorer.com/xyfc/viewtopic. ... 95#p117195) :
http://www.xyplorer.com/faq-topic.php?i ... properties
[from: http://www.xyplorer.com/xyfc/viewtopic. ... =3#p118350 ]
Saw System.Audio group is missing, even though it's pretty useful.
I think all categories listed in https://msdn.microsoft.com/en-us/librar ... 85%29.aspx are supported, only it depends on current selection whether particular properties are available.
So here's a complete list.

Code: Select all

System.Audio.ChannelCount
System.Audio.Compression
System.Audio.EncodingBitrate
System.Audio.Format
System.Audio.IsVariableBitRate
System.Audio.PeakValue
System.Audio.SampleRate
System.Audio.SampleSize
System.Audio.StreamName
System.Audio.StreamNumber
System.Calendar.Duration
System.Calendar.IsOnline
System.Calendar.IsRecurring
System.Calendar.Location
System.Calendar.OptionalAttendeeAddresses
System.Calendar.OptionalAttendeeNames
System.Calendar.OrganizerAddress
System.Calendar.OrganizerName
System.Calendar.ReminderTime
System.Calendar.RequiredAttendeeAddresses
System.Calendar.RequiredAttendeeNames
System.Calendar.Resources
System.Calendar.ResponseStatus
System.Calendar.ShowTimeAs
System.Calendar.ShowTimeAsText
System.Communication.AccountName
System.Communication.DateItemExpires
System.Communication.FollowupIconIndex
System.Communication.HeaderItem
System.Communication.PolicyTag
System.Communication.SecurityFlags
System.Communication.Suffix
System.Communication.TaskStatus
System.Communication.TaskStatusText
System.Computer.DecoratedFreeSpace
System.Contact.Anniversary
System.Contact.AssistantName
System.Contact.AssistantTelephone
System.Contact.Birthday
System.Contact.BusinessAddress
System.Contact.BusinessAddressCity
System.Contact.BusinessAddressCountry
System.Contact.BusinessAddressPostalCode
System.Contact.BusinessAddressPostOfficeBox
System.Contact.BusinessAddressState
System.Contact.BusinessAddressStreet
System.Contact.BusinessFaxNumber
System.Contact.BusinessHomePage
System.Contact.BusinessTelephone
System.Contact.CallbackTelephone
System.Contact.CarTelephone
System.Contact.Children
System.Contact.CompanyMainTelephone
System.Contact.Department
System.Contact.EmailAddress
System.Contact.EmailAddress2
System.Contact.EmailAddress3
System.Contact.EmailAddresses
System.Contact.EmailName
System.Contact.FileAsName
System.Contact.FirstName
System.Contact.FullName
System.Contact.Gender
System.Contact.GenderValue
System.Contact.Hobbies
System.Contact.HomeAddress
System.Contact.HomeAddressCity
System.Contact.HomeAddressCountry
System.Contact.HomeAddressPostalCode
System.Contact.HomeAddressPostOfficeBox
System.Contact.HomeAddressState
System.Contact.HomeAddressStreet
System.Contact.HomeFaxNumber
System.Contact.HomeTelephone
System.Contact.IMAddress
System.Contact.Initials
System.Contact.JA.CompanyNamePhonetic
System.Contact.JA.FirstNamePhonetic
System.Contact.JA.LastNamePhonetic
System.Contact.JobTitle
System.Contact.Label
System.Contact.LastName
System.Contact.MailingAddress
System.Contact.MiddleName
System.Contact.MobileTelephone
System.Contact.NickName
System.Contact.OfficeLocation
System.Contact.OtherAddress
System.Contact.OtherAddressCity
System.Contact.OtherAddressCountry
System.Contact.OtherAddressPostalCode
System.Contact.OtherAddressPostOfficeBox
System.Contact.OtherAddressState
System.Contact.OtherAddressStreet
System.Contact.PagerTelephone
System.Contact.PersonalTitle
System.Contact.PrimaryAddressCity
System.Contact.PrimaryAddressCountry
System.Contact.PrimaryAddressPostalCode
System.Contact.PrimaryAddressPostOfficeBox
System.Contact.PrimaryAddressState
System.Contact.PrimaryAddressStreet
System.Contact.PrimaryEmailAddress
System.Contact.PrimaryTelephone
System.Contact.Profession
System.Contact.SpouseName
System.Contact.Suffix
System.Contact.TelexNumber
System.Contact.TTYTDDTelephone
System.Contact.WebPage
System.Device.PrinterURL
System.DeviceInterface.PrinterDriverDirectory
System.DeviceInterface.PrinterDriverName
System.DeviceInterface.PrinterName
System.DeviceInterface.PrinterPortName
System.Devices.BatteryLife
System.Devices.BatteryPlusCharging
System.Devices.BatteryPlusChargingText
System.Devices.Category
System.Devices.CategoryGroup
System.Devices.CategoryPlural
System.Devices.ChargingState
System.Devices.Connected
System.Devices.ContainerId
System.Devices.DefaultTooltip
System.Devices.DeviceDescription1
System.Devices.DeviceDescription2
System.Devices.DiscoveryMethod
System.Devices.FriendlyName
System.Devices.FunctionPaths
System.Devices.InterfacePaths
System.Devices.IsDefault
System.Devices.IsNetworkConnected
System.Devices.IsShared
System.Devices.IsSoftwareInstalling
System.Devices.LaunchDeviceStageFromExplorer
System.Devices.LocalMachine
System.Devices.Manufacturer
System.Devices.MissedCalls
System.Devices.ModelName
System.Devices.ModelNumber
System.Devices.NetworkedTooltip
System.Devices.NetworkName
System.Devices.NetworkType
System.Devices.NewPictures
System.Devices.Notification
System.Devices.Notifications.LowBattery
System.Devices.Notifications.MissedCall
System.Devices.Notifications.NewMessage
System.Devices.Notifications.NewVoicemail
System.Devices.Notifications.StorageFull
System.Devices.Notifications.StorageFullLinkText
System.Devices.NotificationStore
System.Devices.NotWorkingProperly
System.Devices.Paired
System.Devices.PrimaryCategory
System.Devices.Roaming
System.Devices.SafeRemovalRequired
System.Devices.SharedTooltip
System.Devices.SignalStrength
System.Devices.Status1
System.Devices.Status2
System.Devices.StorageCapacity
System.Devices.StorageFreeSpace
System.Devices.StorageFreeSpacePercent
System.Devices.TextMessages
System.Devices.Voicemail
System.DRM.DatePlayExpires
System.DRM.DatePlayStarts
System.DRM.Description
System.DRM.IsProtected
System.DRM.PlayCount
System.Document.ByteCount
System.Document.CharacterCount
System.Document.ClientID
System.Document.Contributor
System.Document.DateCreated
System.Document.DatePrinted
System.Document.DateSaved
System.Document.Division
System.Document.DocumentID
System.Document.HiddenSlideCount
System.Document.LastAuthor
System.Document.LineCount
System.Document.Manager
System.Document.MultimediaClipCount
System.Document.NoteCount
System.Document.PageCount
System.Document.ParagraphCount
System.Document.PresentationFormat
System.Document.RevisionNumber
System.Document.Security
System.Document.SlideCount
System.Document.Template
System.Document.TotalEditingTime
System.Document.Version
System.Document.WordCount
System.GPS.Altitude
System.GPS.AltitudeDenominator
System.GPS.AltitudeNumerator
System.GPS.AltitudeRef
System.GPS.AreaInformation
System.GPS.Date
System.GPS.DestBearing
System.GPS.DestBearingDenominator
System.GPS.DestBearingNumerator
System.GPS.DestBearingRef
System.GPS.DestDistance
System.GPS.DestDistanceDenominator
System.GPS.DestDistanceNumerator
System.GPS.DestDistanceRef
System.GPS.DestLatitude
System.GPS.DestLatitudeDenominator
System.GPS.DestLatitudeNumerator
System.GPS.DestLatitudeRef
System.GPS.DestLongitude
System.GPS.DestLongitudeDenominator
System.GPS.DestLongitudeNumerator
System.GPS.DestLongitudeRef
System.GPS.Differential
System.GPS.DOP
System.GPS.DOPDenominator
System.GPS.DOPNumerator
System.GPS.ImgDirection
System.GPS.ImgDirectionDenominator
System.GPS.ImgDirectionNumerator
System.GPS.ImgDirectionRef
System.GPS.Latitude
System.GPS.LatitudeDenominator
System.GPS.LatitudeNumerator
System.GPS.LatitudeRef
System.GPS.Longitude
System.GPS.LongitudeDenominator
System.GPS.LongitudeNumerator
System.GPS.LongitudeRef
System.GPS.MapDatum
System.GPS.MeasureMode
System.GPS.ProcessingMethod
System.GPS.Satellites
System.GPS.Speed
System.GPS.SpeedDenominator
System.GPS.SpeedNumerator
System.GPS.SpeedRef
System.GPS.Status
System.GPS.Track
System.GPS.TrackDenominator
System.GPS.TrackNumerator
System.GPS.TrackRef
System.GPS.VersionID
System.Identity.InternetSid
System.Identity.LogonStatusString
System.Identity.PrimarySid
System.Identity.ProviderData
System.Identity.QualifiedUserName
System.Image.BitDepth
System.Image.ColorSpace
System.Image.CompressedBitsPerPixel
System.Image.CompressedBitsPerPixelDenominator
System.Image.CompressedBitsPerPixelNumerator
System.Image.Compression
System.Image.CompressionText
System.Image.Dimensions
System.Image.HorizontalResolution
System.Image.HorizontalSize
System.Image.ImageID
System.Image.ResolutionUnit
System.Image.VerticalResolution
System.Image.VerticalSize
System.Journal.Contacts
System.Journal.EntryType
System.Link.Arguments
System.Link.Comment
System.Link.DateVisited
System.Link.Description
System.Link.Status
System.Link.TargetExtension
System.Link.TargetParsingPath
System.Link.TargetSFGAOFlags
System.Media.AuthorUrl
System.Media.AverageLevel
System.Media.ClassPrimaryID
System.Media.ClassSecondaryID
System.Media.CollectionGroupID
System.Media.CollectionID
System.Media.ContentDistributor
System.Media.ContentID
System.Media.CreatorApplication
System.Media.CreatorApplicationVersion
System.Media.DateEncoded
System.Media.DateReleased
System.Media.Duration
System.Media.DVDID
System.Media.EncodedBy
System.Media.EncodingSettings
System.Media.FrameCount
System.Media.MCDI
System.Media.MetadataContentProvider
System.Media.Producer
System.Media.PromotionUrl
System.Media.ProtectionType
System.Media.ProviderRating
System.Media.ProviderStyle
System.Media.Publisher
System.Media.SubscriptionContentId
System.Media.SubTitle
System.Media.UniqueFileIdentifier
System.Media.UserNoAutoInfo
System.Media.UserWebUrl
System.Media.Writer
System.Media.Year
System.Message.AttachmentContents
System.Message.AttachmentNames
System.Message.BccAddress
System.Message.BccName
System.Message.CcAddress
System.Message.CcName
System.Message.ConversationID
System.Message.ConversationIndex
System.Message.DateReceived
System.Message.DateSent
System.Message.Flags
System.Message.FromAddress
System.Message.FromName
System.Message.HasAttachments
System.Message.IsFwdOrReply
System.Message.MessageClass
System.Message.ProofInProgress
System.Message.SenderAddress
System.Message.SenderName
System.Message.Store
System.Message.ToAddress
System.Message.ToDoFlags
System.Message.ToDoTitle
System.Message.ToName
System.Music.AlbumArtist
System.Music.AlbumID
System.Music.AlbumTitle
System.Music.Artist
System.Music.BeatsPerMinute
System.Music.Composer
System.Music.Conductor
System.Music.ContentGroupDescription
System.Music.DisplayArtist
System.Music.Genre
System.Music.InitialKey
System.Music.IsCompilation
System.Music.Lyrics
System.Music.Mood
System.Music.PartOfSet
System.Music.Period
System.Music.SynchronizedLyrics
System.Music.TrackNumber
System.Note.Color
System.Note.ColorText
System.Photo.Aperture
System.Photo.ApertureDenominator
System.Photo.ApertureNumerator
System.Photo.Brightness
System.Photo.BrightnessDenominator
System.Photo.BrightnessNumerator
System.Photo.CameraManufacturer
System.Photo.CameraModel
System.Photo.CameraSerialNumber
System.Photo.Contrast
System.Photo.ContrastText
System.Photo.DateTaken
System.Photo.DigitalZoom
System.Photo.DigitalZoomDenominator
System.Photo.DigitalZoomNumerator
System.Photo.Event
System.Photo.EXIFVersion
System.Photo.ExposureBias
System.Photo.ExposureBiasDenominator
System.Photo.ExposureBiasNumerator
System.Photo.ExposureIndex
System.Photo.ExposureIndexDenominator
System.Photo.ExposureIndexNumerator
System.Photo.ExposureProgram
System.Photo.ExposureProgramText
System.Photo.ExposureTime
System.Photo.ExposureTimeDenominator
System.Photo.ExposureTimeNumerator
System.Photo.Flash
System.Photo.FlashEnergy
System.Photo.FlashEnergyDenominator
System.Photo.FlashEnergyNumerator
System.Photo.FlashManufacturer
System.Photo.FlashModel
System.Photo.FlashText
System.Photo.FNumber
System.Photo.FNumberDenominator
System.Photo.FNumberNumerator
System.Photo.FocalLength
System.Photo.FocalLengthDenominator
System.Photo.FocalLengthInFilm
System.Photo.FocalLengthNumerator
System.Photo.FocalPlaneXResolution
System.Photo.FocalPlaneXResolutionDenominator
System.Photo.FocalPlaneXResolutionNumerator
System.Photo.FocalPlaneYResolution
System.Photo.FocalPlaneYResolutionDenominator
System.Photo.FocalPlaneYResolutionNumerator
System.Photo.GainControl
System.Photo.GainControlDenominator
System.Photo.GainControlNumerator
System.Photo.GainControlText
System.Photo.ISOSpeed
System.Photo.LensManufacturer
System.Photo.LensModel
System.Photo.LightSource
System.Photo.MakerNote
System.Photo.MakerNoteOffset
System.Photo.MaxAperture
System.Photo.MaxApertureDenominator
System.Photo.MaxApertureNumerator
System.Photo.MeteringMode
System.Photo.MeteringModeText
System.Photo.Orientation
System.Photo.OrientationText
System.Photo.PeopleNames
System.Photo.PhotometricInterpretation
System.Photo.PhotometricInterpretationText
System.Photo.ProgramMode
System.Photo.ProgramModeText
System.Photo.RelatedSoundFile
System.Photo.Saturation
System.Photo.SaturationText
System.Photo.Sharpness
System.Photo.SharpnessText
System.Photo.ShutterSpeed
System.Photo.ShutterSpeedDenominator
System.Photo.ShutterSpeedNumerator
System.Photo.SubjectDistance
System.Photo.SubjectDistanceDenominator
System.Photo.SubjectDistanceNumerator
System.Photo.TagViewAggregate
System.Photo.TranscodedForSync
System.Photo.WhiteBalance
System.Photo.WhiteBalanceText
System.PropGroup.Advanced
System.PropGroup.Audio
System.PropGroup.Calendar
System.PropGroup.Camera
System.PropGroup.Contact
System.PropGroup.Content
System.PropGroup.Description
System.PropGroup.FileSystem
System.PropGroup.General
System.PropGroup.GPS
System.PropGroup.Image
System.PropGroup.Media
System.PropGroup.MediaAdvanced
System.PropGroup.Message
System.PropGroup.Music
System.PropGroup.Origin
System.PropGroup.PhotoAdvanced
System.PropGroup.RecordedTV
System.PropGroup.Video
System.PropList.ConflictPrompt
System.PropList.ContentViewModeForBrowse
System.PropList.ContentViewModeForSearch
System.PropList.ExtendedTileInfo
System.PropList.FileOperationPrompt
System.PropList.FullDetails
System.PropList.InfoTip
System.PropList.NonPersonal
System.PropList.PreviewDetails
System.PropList.PreviewTitle
System.PropList.QuickTip
System.PropList.TileInfo
System.PropList.XPDetailsPanel
System.RecordedTV.ChannelNumber
System.RecordedTV.Credits
System.RecordedTV.DateContentExpires
System.RecordedTV.EpisodeName
System.RecordedTV.IsATSCContent
System.RecordedTV.IsClosedCaptioningAvailable
System.RecordedTV.IsDTVContent
System.RecordedTV.IsHDContent
System.RecordedTV.IsRepeatBroadcast
System.RecordedTV.IsSAP
System.RecordedTV.NetworkAffiliation
System.RecordedTV.OriginalBroadcastDate
System.RecordedTV.ProgramDescription
System.RecordedTV.RecordingTime
System.RecordedTV.StationCallSign
System.RecordedTV.StationName
System.Search.AutoSummary
System.Search.ContainerHash
System.Search.Contents
System.Search.EntryID
System.Search.ExtendedProperties
System.Search.GatherTime
System.Search.HitCount
System.Search.IsClosedDirectory
System.Search.IsFullyContained
System.Search.QueryFocusedSummary
System.Search.QueryFocusedSummaryWithFallback
System.Search.Rank
System.Search.Store
System.Search.UrlToIndex
System.Search.UrlToIndexWithModificationTime
System.DescriptionID
System.InfoTipText
System.InternalName
System.Link.TargetSFGAOFlagsStrings
System.Link.TargetUrl
System.NamespaceCLSID
System.Shell.SFGAOFlagsStrings
System.AppUserModel.ExcludeFromShowInNewInstall
System.AppUserModel.ID
System.AppUserModel.IsDestListSeparator
System.AppUserModel.PreventPinning
System.AppUserModel.RelaunchCommand
System.AppUserModel.RelaunchDisplayNameResource
System.AppUserModel.RelaunchIconResource
System.Software.DateLastUsed
System.Software.ProductName
System.Sync.Comments
System.Sync.ConflictDescription
System.Sync.ConflictFirstLocation
System.Sync.ConflictSecondLocation
System.Sync.HandlerCollectionID
System.Sync.HandlerID
System.Sync.HandlerName
System.Sync.HandlerType
System.Sync.HandlerTypeLabel
System.Sync.ItemID
System.Sync.ItemName
System.Sync.ProgressPercentage
System.Sync.State
System.Sync.Status
System.AcquisitionID
System.ApplicationName
System.Author
System.Capacity
System.Category
System.Comment
System.Company
System.ComputerName
System.ContainedItems
System.ContentStatus
System.ContentType
System.Copyright
System.DateAccessed
System.DateAcquired
System.DateArchived
System.DateCompleted
System.DateCreated
System.DateImported
System.DateModified
System.DueDate
System.EndDate
System.FileAllocationSize
System.FileAttributes
System.FileCount
System.FileDescription
System.FileExtension
System.FileFRN
System.FileName
System.FileOwner
System.FileVersion
System.FindData
System.FlagColor
System.FlagColorText
System.FlagStatus
System.FlagStatusText
System.FreeSpace
System.FullText
System.Identity
System.Identity.Blob
System.Identity.DisplayName
System.Identity.IsMeIdentity
System.Identity.PrimaryEmailAddress
System.Identity.ProviderID
System.Identity.UniqueID
System.Identity.UserName
System.IdentityProvider.Name
System.IdentityProvider.Picture
System.ImageParsingName
System.Importance
System.ImportanceText
System.IsAttachment
System.IsDefaultNonOwnerSaveLocation
System.IsDefaultSaveLocation
System.IsDeleted
System.IsEncrypted
System.IsFlagged
System.IsFlaggedComplete
System.IsIncomplete
System.IsLocationSupported
System.IsPinnedToNameSpaceTree
System.IsRead
System.IsSearchOnlyItem
System.IsSendToTarget
System.IsShared
System.ItemAuthors
System.ItemClassType
System.ItemDate
System.ItemFolderNameDisplay
System.ItemFolderPathDisplay
System.ItemFolderPathDisplayNarrow
System.ItemName
System.ItemNameDisplay
System.ItemNamePrefix
System.ItemParticipants
System.ItemPathDisplay
System.ItemPathDisplayNarrow
System.ItemType
System.ItemTypeText
System.ItemUrl
System.Keywords
System.Kind
System.KindText
System.Language
System.LayoutPattern.ContentViewModeForBrowse
System.LayoutPattern.ContentViewModeForSearch
System.MileageInformation
System.MIMEType
System.Null
System.OfflineAvailability
System.OfflineStatus
System.OriginalFileName
System.OwnerSID
System.ParentalRating
System.ParentalRatingReason
System.ParentalRatingsOrganization
System.ParsingBindContext
System.ParsingName
System.ParsingPath
System.PerceivedType
System.PercentFull
System.Priority
System.PriorityText
System.Project
System.ProviderItemID
System.Rating
System.RatingText
System.Sensitivity
System.SensitivityText
System.SFGAOFlags
System.SharedWith
System.ShareUserRating
System.SharingStatus
System.Shell.OmitFromView
System.SimpleRating
System.Size
System.SoftwareUsed
System.SourceItem
System.StartDate
System.Status
System.Subject
System.Thumbnail
System.ThumbnailCacheId
System.ThumbnailStream
System.Title
System.TotalFileSize
System.Trademarks
System.Task.BillingInformation
System.Task.CompletionStatus
System.Task.Owner
System.Video.Compression
System.Video.Director
System.Video.EncodingBitrate
System.Video.FourCC
System.Video.FrameHeight
System.Video.FrameRate
System.Video.FrameWidth
System.Video.HorizontalAspectRatio
System.Video.SampleSize
System.Video.StreamName
System.Video.StreamNumber
System.Video.TotalBitrate
System.Video.TranscodedForSync
System.Video.VerticalAspectRatio
System.Volume.FileSystem
System.Volume.IsMappedDrive
System.Volume.IsRoot
[/size]
Though I'm doubtful of System.Communication, .Computer, Devices, .GPS, .Identity, .PropGroup, .Search, .Sync.
Regarding these doubted categories, maybe XY can be made to parse and return these special properties that don't (and for some, can't) depend on current selection?
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

admin
Site Admin
Posts: 66294
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Canonical Property Names

Post by admin »

Thanks, that list is really useful. A treasure!

For example, these work and partly retrieve info that the normal shell properties don't see or see with less resolution.
text <prop System.Audio.SampleSize>;
text <prop System.Media.Duration>;
text <prop System.Audio.EncodingBitrate>;

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: Canonical Property Names

Post by bdeshi »

also ::text <prop System.NamespaceCLSID>; on special folders.
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

admin
Site Admin
Posts: 66294
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Canonical Property Names

Post by admin »

Amazing!

binocular222
Posts: 1423
Joined: 04 Nov 2008 05:35
Location: Win11, Win10, 100% Scaling

Re: Canonical Property Names

Post by binocular222 »

All these starts with System?
Then, can we shorten it such as: instead of ::echo property('System.Audio.ChannelCount')
we have ::echo property('Audio.ChannelCount')
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

Filehero
Posts: 2731
Joined: 27 Feb 2012 18:50
Location: Windows 11@100%

Re: Canonical Property Names

Post by Filehero »

binocular222 wrote:Then, can we shorten it such as: instead of ::echo property('System.Audio.ChannelCount')
we have ::echo property('Audio.ChannelCount')
I would insist on enforcing the usage of full-qualified keys, because that's what full qualified names are made for!

And, you never know what oteh rkeys might come up.


Cheers,
FH

Post Reply