Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

using in c#

//doing with using function
using (var font1 = new Font("Arial", 10.0f)) 
{
    byte charset = font1.GdiCharSet;
}

//or
using var font1 = new Font("Arial", 10.0f);
byte charset = font1.GdiCharSet;
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
7+7 =