GetMagickImageProperties() public method

public GetMagickImageProperties ( ) : IEnumerable
return IEnumerable
示例#1
0
 private void AddMagickImageProperties(XElement annotation)
 {
     foreach (PropertyInfo property in _Types.GetMagickImageProperties())
     {
         annotation.AddBeforeSelf(CreateElement(property));
     }
 }