public static ImagemapSize ToImagemapSize(this IImagemapSize self)
 {
     return(new ImagemapSize()
     {
         Width = self.Width,
         Height = self.Height
     });
 }
예제 #2
0
 internal static ImagemapSize Convert(IImagemapSize size)
 {
     return(new ImagemapSize()
     {
         Width = size.Width,
         Height = size.Height
     });
 }