SobekCM.Resource_Object.Divisions.SobekCM_File_Info.Set_Technical_Details C# (CSharp) Method

Set_Technical_Details() public method

Sets the technical details for this image file
public Set_Technical_Details ( ushort New_Width, ushort New_Height ) : void
New_Width ushort Width of this image file
New_Height ushort Height of this image file
return void
        public void Set_Technical_Details(ushort New_Width, ushort New_Height)
        {
            width = New_Width;
            height = New_Height;
        }