コード例 #1
0
 public SvgGraphicsDevice(ISvgContextMapper mapper)
 {
     if (mapper == null)
     {
         throw new ArgumentNullException("mapper");
     }
     _mapper = mapper;
     Name    = "SvgGraphicsDevice";
 }
コード例 #2
0
 public void ChangeMapper(ISvgContextMapper mapper)
 {
     _mapper = mapper;
 }
コード例 #3
0
 public SvgGraphicsDevice(ISvgContextMapper mapper)
 {
     if (mapper == null) throw new ArgumentNullException("mapper");
     _mapper = mapper;
     Name = "SvgGraphicsDevice";
 }