AODL.Document.Import.OpenDocument.NodeProcessors.MainContentProcessor.LoadFrameGraphic C# (CSharp) Метод

LoadFrameGraphic() приватный Метод

private LoadFrameGraphic ( Frame frame, Graphic content ) : void
frame AODL.Document.Content.Draw.Frame
content AODL.Document.Content.Draw.Graphic
Результат void
		private void LoadFrameGraphic(Frame frame, Graphic content)
		{
			try
			{
				string graphicRealPath = Path.GetFullPath(content.GraphicRealPath);
				frame.LoadImageFromFile(graphicRealPath);
			}
			catch (AODLGraphicException e)
			{
				this.OnWarning(
					new AODLWarning("A couldn't create any content from an an first level node!.", content.Node, e));
				
			}
		}