This .NET class wraps the MatchingPolicy ObjectARX class.
MatchingPolicy enumeration defines the supported media-matching policies on the PlotInfoValidator class.
Public Enum MatchingPolicy MatchDisabled = 1 MatchEnabled = 2 MatchEnabledCustom = 3 MatchEnabledTemporaryCustom = 4 End Enum
public enum MatchingPolicy { MatchDisabled = 1, MatchEnabled = 2, MatchEnabledCustom = 3, MatchEnabledTemporaryCustom = 4 }
Members |
Description |
MatchDisabled = 1 |
Media matching is disabled. |
MatchEnabled = 2 |
Media matching is enabled. |
MatchEnabledCustom = 3 |
Media matching is enabled. If no matching media is found, a custom size is created and saved to disk. |
MatchEnabledTemporaryCustom = 4 |
Media matching is enabled. If no matching media is found, a custom size is created and saved in a temporary PC3/PMP file, which is deleted when the validated PlotInfo object is destroyed. |
Comments? |