Click or drag to resize
ProjectResources Property
Returns the object that contains all the graphic sheet resources for the project (among other things)

Namespace: (Default Namespace)
Assembly: Default (in Default.exe) Version: 1.0.0.0
Syntax
C#
public static ResourceManager Resources { get; }

Property Value

Type: ResourceManager
Examples
A graphic sheet's image can be retrieved from this object using code like this:
System.Drawing.Bitmap bmpGfx = (System.Drawing.Bitmap)Project.Resources.GetObject("My Sheet")
See Also